soak accesses no longer consume corresponding operators

This commit is contained in:
satyr
2010-10-10 07:10:20 +09:00
parent c5f922c5db
commit b0e34edf99
3 changed files with 1 additions and 5 deletions

View File

@@ -1382,10 +1382,6 @@
return Op.__super__.toString.call(this, idt, this.constructor.name + ' ' + this.operator);
};
Op.prototype.compileNode = function(o) {
var node;
if (node = Value.unfoldSoak(o, this, 'first')) {
return node.compile(o);
}
if (this.isChainable() && this.first.unwrap() instanceof Op && this.first.unwrap().isChainable()) {
return this.compileChain(o);
}