integrated parser into graphite target editor

This commit is contained in:
Torkel Ödegaard
2013-12-24 13:01:50 +01:00
parent dd902d5a15
commit bc3cad209f
3 changed files with 2 additions and 9 deletions
-5
View File
@@ -11,11 +11,6 @@ define([
StringLiteral: 6
};
function Node(type, value) {
this.type = type;
this.value = value;
}
function Parser(expression) {
this.expression = expression;
this.lexer = new Lexer(expression);