mirror of
https://github.com/jashkenas/coffeescript.git
synced 2026-02-17 19:11:22 -05:00
correctly self-compiling @references
This commit is contained in:
@@ -568,7 +568,7 @@
|
||||
return this;
|
||||
},
|
||||
compile_node: function compile_node(o) {
|
||||
return 'this' + (this.property ? '.' + this.property : '');
|
||||
return 'this' + (this.property ? '.' + this.property.compile(o) : '');
|
||||
}
|
||||
}));
|
||||
// A range literal. Ranges can be used to extract portions (slices) of arrays,
|
||||
|
||||
Reference in New Issue
Block a user