[]
Token types (used when building expressions, sequence defines operator priority)
public enum TKTYPE
| Name | Description |
|---|---|
| ADDSUB | Operations: + - |
| COMPARE | Operations: < > = <= >= |
| GROUP | Operations: ( ) , . |
| IDENTIFIER | functions, external objects, bindings. |
| LITERAL | 123.32, "Hello", etc. |
| LOGIC | Operations: AND OR NOT |
| MULDIV | Operations: * / |