Skip to content

Commit 7596e3a

Browse files
committed
putting back arguments.
1 parent 0d4d7e0 commit 7596e3a

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

lib/scope.js

Lines changed: 6 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/scope.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ exports.Scope = class Scope
1818
# where it should declare its variables, and a reference to the function that
1919
# it wraps.
2020
constructor: (@parent, @expressions, @method) ->
21-
@variables = []
21+
@variables = [{name: 'arguments', type: 'arguments'}]
2222
@positions = {}
2323
if @parent
2424
@garbage = @parent.garbage

0 commit comments

Comments
 (0)