diff options
Diffstat (limited to 'lib/scope.js')
-rw-r--r-- | lib/scope.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/scope.js b/lib/scope.js index f638890f..97027274 100644 --- a/lib/scope.js +++ b/lib/scope.js @@ -197,7 +197,7 @@ AST_Toplevel.DEFMETHOD("figure_out_scope", function(options) { } else if (node instanceof AST_SymbolLet) { scope.def_variable(node).exported = exported; } else if (node instanceof AST_SymbolVar) { - defun.def_variable(node, null).exported = exported; + defun.def_variable(node, node instanceof AST_SymbolImport ? undefined : null).exported = exported; entangle(defun, scope); } |