From 8fe495a61e4a85be1934e5205a6f036900ee45d0 Mon Sep 17 00:00:00 2001 From: Shagun Agrawal Date: Thu, 19 Sep 2024 22:54:27 +0530 Subject: Add driver option and lexing stage for functions Ch 9 --- src/cljcc/token.clj | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/cljcc/token.clj') diff --git a/src/cljcc/token.clj b/src/cljcc/token.clj index a703373..fc62334 100644 --- a/src/cljcc/token.clj +++ b/src/cljcc/token.clj @@ -3,6 +3,7 @@ (def token-kind #{:eof :semicolon + :comma ;; brackets :left-curly @@ -132,6 +133,7 @@ \) :right-paren \? :question \: :colon + \, :comma \{ :left-curly \} :right-curly \= :assignment -- cgit v1.2.3