Added CAstOperator to support the not in operation in Python.

This commit is contained in:
Sifis Lagouvardos 2018-09-12 18:25:21 +03:00
parent 9ce10ab5b9
commit be0ef4e16b
1 changed files with 1 additions and 0 deletions

View File

@ -88,6 +88,7 @@ public class CAstOperator implements CAstNode {
public final static CAstOperator OP_BIT_XOR = new CAstOperator("^");
public final static CAstOperator OP_REL_XOR = new CAstOperator("^^");
public final static CAstOperator OP_IN = new CAstOperator("in");
public final static CAstOperator OP_NOT_IN = new CAstOperator("not in");
}