correctly self-compiling @references

This commit is contained in:
Jeremy Ashkenas
2010-02-12 13:56:58 -05:00
parent e2ad1190ac
commit dbcb9df22b
2 changed files with 2 additions and 2 deletions

View File

@@ -434,7 +434,7 @@ ThisNode: exports.ThisNode: inherit Node, {
this
compile_node: (o) ->
'this' + (if @property then '.' + @property else '')
'this' + (if @property then '.' + @property.compile(o) else '')
}