mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
2.2 KiB
2.2 KiB
| 1 | Invalid | Invalid |
|---|---|---|
| 2 | EOF | EOF |
| 3 | Comment | Comment |
| 4 | FileTag | FileTag |
| 5 | _LiteralBegin | |
| 6 | Ident | identifier |
| 7 | Integer | integer |
| 8 | Float | float |
| 9 | Imag | imaginary |
| 10 | Rune | rune |
| 11 | String | string |
| 12 | _LiteralEnd | |
| 13 | _OperatorBegin | |
| 14 | Eq | = |
| 15 | Not | ! |
| 16 | Hash | # |
| 17 | At | @ |
| 18 | Dollar | $ |
| 19 | Pointer | ^ |
| 20 | Question | ? |
| 21 | Add | + |
| 22 | Sub | - |
| 23 | Mul | * |
| 24 | Quo | / |
| 25 | Mod | % |
| 26 | ModMod | %% |
| 27 | And | & |
| 28 | Or | | |
| 29 | Xor | ~ |
| 30 | AndNot | &~ |
| 31 | Shl | << |
| 32 | Shr | >> |
| 33 | CmpAnd | && |
| 34 | CmpOr | || |
| 35 | _AssignOpBegin | |
| 36 | AddEq | += |
| 37 | SubEq | -= |
| 38 | MulEq | *= |
| 39 | QuoEq | /= |
| 40 | ModEq | %= |
| 41 | ModModEq | %%= |
| 42 | AndEq | &= |
| 43 | OrEq | |= |
| 44 | XorEq | ~= |
| 45 | AndNotEq | &~= |
| 46 | ShlEq | <<= |
| 47 | ShrEq | >>= |
| 48 | CmpAndEq | &&= |
| 49 | CmpOrEq | ||= |
| 50 | _AssignOpEnd | |
| 51 | Increment | ++ |
| 52 | Decrement | -- |
| 53 | ArrowRight | -> |
| 54 | Uninit | --- |
| 55 | _ComparisonBegin | |
| 56 | CmpEq | == |
| 57 | NotEq | != |
| 58 | Lt | < |
| 59 | Gt | > |
| 60 | LtEq | <= |
| 61 | GtEq | >= |
| 62 | _ComparisonEnd | |
| 63 | OpenParen | ( |
| 64 | CloseParen | ) |
| 65 | OpenBracket | [ |
| 66 | CloseBracket | ] |
| 67 | OpenBrace | { |
| 68 | CloseBrace | } |
| 69 | Colon | : |
| 70 | Semicolon | ; |
| 71 | Period | . |
| 72 | Comma | , |
| 73 | Ellipsis | .. |
| 74 | RangeFull | ..= |
| 75 | RangeHalf | ..< |
| 76 | BackSlash | \\ |
| 77 | _OperatorEnd | |
| 78 | _KeywordBegin | |
| 79 | import | import |
| 80 | foreign | foreign |
| 81 | package | package |
| 82 | typeid | typeid |
| 83 | when | when |
| 84 | where | where |
| 85 | if | if |
| 86 | else | else |
| 87 | for | for |
| 88 | switch | switch |
| 89 | in | in |
| 90 | not_in | not_in |
| 91 | do | do |
| 92 | case | case |
| 93 | break | break |
| 94 | continue | continue |
| 95 | fallthrough | fallthrough |
| 96 | defer | defer |
| 97 | return | return |
| 98 | proc | proc |
| 99 | struct | struct |
| 100 | union | union |
| 101 | enum | enum |
| 102 | bit_set | bit_set |
| 103 | bit_field | bit_field |
| 104 | map | map |
| 105 | dynamic | dynamic |
| 106 | auto_cast | auto_cast |
| 107 | cast | cast |
| 108 | transmute | transmute |
| 109 | distinct | distinct |
| 110 | using | using |
| 111 | context | context |
| 112 | or_else | or_else |
| 113 | or_return | or_return |
| 114 | or_break | or_break |
| 115 | or_continue | or_continue |
| 116 | asm | asm |
| 117 | matrix | matrix |
| 118 | _KeywordEnd | |
| 119 | Count |