diff options
Diffstat (limited to 'src/cljcc/parser.clj')
| -rw-r--r-- | src/cljcc/parser.clj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cljcc/parser.clj b/src/cljcc/parser.clj index 37d1c39..6ab3373 100644 --- a/src/cljcc/parser.clj +++ b/src/cljcc/parser.clj @@ -519,7 +519,8 @@ (defn- parse-program [tokens] (let [[declarations tokens] (parse-repeatedly tokens parse-declaration :eof) _ (expect :eof tokens) - _ (m/coerce #'s/Program declarations)] + ;_ (m/coerce #'s/Program declarations) + ] declarations)) (defn parse [tokens] |
