Removing obsolete delete calls.

This commit is contained in:
Tim Jones
2010-05-04 01:15:17 +12:00
committed by Jeremy Ashkenas
parent 52e6399e02
commit ae70d10996
2 changed files with 0 additions and 5 deletions

View File

@@ -325,8 +325,6 @@ exports.ValueNode: class ValueNode extends BaseNode
baseline: + part
complete: + part
@last: part
del o, 'chain_root'
if op and @wrapped then "($complete)" else complete
@@ -387,7 +385,6 @@ exports.CallNode: class CallNode extends BaseNode
args: (arg.compile(o) for arg in @args).join(', ')
compilation: if @is_super then @compile_super(args, o)
else "${@prefix()}${@variable.compile(o)}($args)"
del o, 'chain_root'
if o.operation and @wrapped then "($compilation)" else compilation
# `super()` is converted into a call against the superclass's implementation