From 22dc33f93c2ccb3279c621169852b658b81ac162 Mon Sep 17 00:00:00 2001 From: Sebastian McKenzie Date: Sun, 28 Dec 2014 09:36:29 +1100 Subject: [PATCH] remove unused variable --- lib/6to5/transformation/modules/system.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/6to5/transformation/modules/system.js b/lib/6to5/transformation/modules/system.js index 8a24bca43f..e7a320618b 100644 --- a/lib/6to5/transformation/modules/system.js +++ b/lib/6to5/transformation/modules/system.js @@ -80,7 +80,7 @@ SystemFormatter.prototype.transform = function (ast) { // hoist up function declarations for circular references traverse(program, { - enter: function (node, parent) { + enter: function (node) { if (t.isFunction(node)) this.stop(); if (t.isFunctionDeclaration(node) || node._blockHoist) {