Added prefix dereference

This commit is contained in:
2023-08-13 18:58:47 -05:00
parent e3b20aae41
commit 190ceb5f13
4 changed files with 37 additions and 19 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ eq = { "==" }
ne = { "!=" }
lshift = { "<<" }
rshift = { ">>" }
prefix = { "-" | "!" }
prefix = { "*" | "-" | "!" }
operator = _{
add