Improve bytecode generation.

This commit is contained in:
James Roseborough
2010-08-09 23:55:37 +00:00
parent eea19fa6f7
commit 4bb7564f73

View File

@@ -77,10 +77,6 @@ public class UpvalInfo {
return;
}
// check for assignment to 2 upvalues at once
if ( v.upvalue != null )
throw new IllegalArgumentException("upvalue collision detected between "+v.upvalue+" and "+this);
// assign the variable
v.upvalue = this;
this.includeVar(v);