Logical or/and

This commit is contained in:
nub31
2025-09-09 16:29:42 +02:00
parent e86571d1a2
commit aad41fbcbb
8 changed files with 45 additions and 21 deletions

View File

@@ -30,6 +30,8 @@ public sealed class Tokenizer
[['>', '=']] = Symbol.GreaterThanOrEqual,
[['<', '<']] = Symbol.LeftShift,
[['>', '>']] = Symbol.RightShift,
[['&', '&']] = Symbol.And,
[['|', '|']] = Symbol.Or,
[[':']] = Symbol.Colon,
[['(']] = Symbol.OpenParen,
[[')']] = Symbol.CloseParen,