feat(change_detector): add support for negate

This commit is contained in:
vsavkin
2014-11-11 17:02:59 -08:00
parent 4e38e3a96c
commit f38b94067a
3 changed files with 11 additions and 4 deletions

View File

@ -262,7 +262,6 @@ export class Binary extends AST {
}
export class PrefixNot extends AST {
@FIELD('final operation:string')
@FIELD('final expression:AST')
constructor(expression:AST) {
this.expression = expression;