Replaced old parser with new parser
This commit is contained in:
@@ -24,4 +24,8 @@ export default class NotOperatorNode extends ParseNode {
|
||||
let {right} = this;
|
||||
return `!${right.toString()}`;
|
||||
}
|
||||
traverse(fn){
|
||||
fn(this);
|
||||
this.right.traverse(fn);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user