refactor($parse): remove commented out code

This commit is contained in:
Igor Minar
2014-09-12 16:08:24 +02:00
parent 6af2ff2c7d
commit c1f2c3ea83

View File

@@ -123,7 +123,6 @@ var OPERATORS = extend(createMap(), {
'&&':function(self, locals, a,b){return a(self, locals)&&b(self, locals);},
'||':function(self, locals, a,b){return a(self, locals)||b(self, locals);},
'&':function(self, locals, a,b){return a(self, locals)&b(self, locals);},
// '|':function(self, locals, a,b){return a|b;},
'!':function(self, locals, a){return !a(self, locals);},
//Tokenized as operators but parsed as assignment/filters