This commit is contained in:
2018-09-13 08:11:15 +02:00
parent c6a1291ee6
commit a2e63cca44
7 changed files with 1 additions and 32 deletions

View File

@@ -70,16 +70,6 @@ public class QueryLanguage {
stack.push(new Terminal(ctx.getText(), line, startIndex, stopIndex));
}
// TODO remove
// @Override
// public void exitPropertyExpression(final PropertyExpressionContext ctx) {
// // System.out.println("property expression");
//
// final Expression value = stack.pop();
// final Terminal property = (Terminal) stack.pop();
//
// stack.push(new Property(property.getValue(), (Terminal) value));
// }
@Override
public void exitNotExpression(final NotExpressionContext ctx) {