1
0
Fork 0
mirror of https://github.com/jashkenas/coffeescript.git synced 2022-11-09 12:23:24 -05:00

test_operations.coffee is now compiling successfully

This commit is contained in:
Jeremy Ashkenas 2010-02-11 23:59:56 -05:00
parent 12685aa54a
commit 1e74805aa4
2 changed files with 2 additions and 2 deletions

View file

@ -512,7 +512,7 @@
// in multiple places, ensure that the function is only ever called once.
compile_reference: function compile_reference(o) {
var call, reference;
reference = o.scope.free_variable();
reference = new LiteralNode(o.scope.free_variable());
call = new ParentheticalNode(new AssignNode(reference, this));
return [call, reference];
}