kicad/common/libeval_compiler/grammar.h

25 lines
1.0 KiB
C
Raw Normal View History

2020-06-04 11:04:03 +00:00
#define G_IDENTIFIER 1
#define G_ASSIGN 2
#define G_SEMCOL 3
#define G_BOOL_OR 4
#define G_BOOL_AND 5
#define G_BOOL_XOR 6
#define G_LESS_THAN 7
#define G_GREATER_THAN 8
#define G_LESS_EQUAL_THAN 9
#define G_GREATER_EQUAL_THAN 10
#define G_EQUAL 11
#define G_NOT_EQUAL 12
#define G_UNIT 13
#define G_BOOL_NOT 14
#define G_PLUS 15
#define G_MINUS 16
#define G_DIVIDE 17
#define G_MULT 18
#define G_STRUCT_REF 19
#define G_ENDS 20
#define G_VALUE 21
#define G_STRING 22
#define G_PARENL 23
#define G_PARENR 24