diff options
| author | Your Name <agrawalshagun07@gmail.com> | 2025-07-26 00:25:27 +0530 |
|---|---|---|
| committer | Your Name <agrawalshagun07@gmail.com> | 2025-07-26 00:25:27 +0530 |
| commit | a5105ccc4be5eb13fc87fd8554209ee03ccfc483 (patch) | |
| tree | 2556b0657f292fdad33261915e0c1ee3c7fb97d9 /cljcc-compiler/src/cljcc/token.clj | |
| parent | 444fc88251b059ef6f86d0461754cdf5c38fdccd (diff) | |
Adding clojure-mcp setupmain
Diffstat (limited to 'cljcc-compiler/src/cljcc/token.clj')
| -rw-r--r-- | cljcc-compiler/src/cljcc/token.clj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cljcc-compiler/src/cljcc/token.clj b/cljcc-compiler/src/cljcc/token.clj index 213588c..f13386c 100644 --- a/cljcc-compiler/src/cljcc/token.clj +++ b/cljcc-compiler/src/cljcc/token.clj @@ -86,6 +86,7 @@ "Binary operands and their precedence." {:multiply 100 :divide 100 + :divide-double 100 :remainder 100 :plus 90 @@ -227,7 +228,7 @@ :literal literal})) (def tacky-unary-ops - #{:bit-not :negate :logical-not}) + #{:bit-not :negate :logical-not :shr}) (def tacky-binary-ops #{:add |
