remove unused variable

This commit is contained in:
Sebastian McKenzie
2014-12-28 09:36:29 +11:00
parent 6df6652629
commit 22dc33f93c

View File

@@ -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) {