super is now possible in nodes/Expressions, where it wasn't possible before.

This commit is contained in:
Jeremy Ashkenas
2010-02-27 19:42:10 -05:00
parent b5c9d779bd
commit 9f46c306e5
2 changed files with 2 additions and 2 deletions

View File

@@ -152,7 +152,7 @@ exports.Expressions: class Expressions extends BaseNode
compile: (o) ->
o ||= {}
if o.scope then BaseNode::compile.call(this, o) else @compile_root(o)
if o.scope then super(o) else @compile_root(o)
# Compile each expression in the Expressions body.
compile_node: (o) ->