add in as an operator

This commit is contained in:
2025-06-11 02:29:14 +01:00
parent 406c57c296
commit f8207702e1
5 changed files with 58 additions and 6 deletions

View File

@@ -34,7 +34,8 @@ typedef enum {
TOKEN_GE, // >=
TOKEN_EQ, // ==
TOKEN_NE, // !=
TOKEN_NOT_IN, // not in (Usually treated like a comparison)
TOKEN_NOT_IN, // not in
TOKEN_IN, // in
TOKEN_AND, // &&
TOKEN_OR, // ||
@@ -57,7 +58,6 @@ typedef enum {
TOKEN_NULL,
TOKEN_DELETE,
TOKEN_NOT,
TOKEN_IN,
TOKEN_TRY,
TOKEN_CATCH,