gencpp/project/components/EOperator.csv
Ed_ cf65638979 Started to generate the enums from csv (ECode, EOperator, ESpecifier).
- Changed the zpl csv parser to only accept hex values with 0x perfix. it was messing with the add term.
- Small changes to the clang format config.
2023-07-26 14:21:20 -04:00

909 B

1Assign=
2Assign_Add+=
3Assign_Subtract-=
4Assign_Multiply*=
5Assign_Divide/=
6Assign_Modulo%=
7Assign_BAnd&=
8Assign_BOr|=
9Assign_BXOr^=
10Assign_LShift<<=
11Assign_RShift>>=
12Increment++
13Decrement--
14Unary_Plus+
15Unary_Minus-
16UnaryNot!
17Add+
18Subtract-
19Multiply*
20Divide/
21Modulo%
22BNot~
23BAnd&
24BOr|
25BXOr^
26LShift<<
27RShift>>
28LAnd&&
29LOr||
30LEqual==
31LNot!=
32Lesser<
33Greater>
34LesserEqual<=
35GreaterEqual>=
36Subscript[]
37Indirection*
38AddressOf&
39MemberOfPointer->
40PtrToMemOfPtr->*
41FunctionCall()
42Comma,