aboutsummaryrefslogtreecommitdiff
path: root/src/cljcc/parser.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/cljcc/parser.clj')
-rw-r--r--src/cljcc/parser.clj5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/cljcc/parser.clj b/src/cljcc/parser.clj
index 84e681c..4ae441a 100644
--- a/src/cljcc/parser.clj
+++ b/src/cljcc/parser.clj
@@ -26,11 +26,6 @@
[_ tokens] (expect end-kind tokens)]
[e tokens])))
-(defn- keyword->type [k]
- (condp = k
- :kw-int "int"
- (throw (ex-info "Parser Error. Unsupported type." {:keyword k}))))
-
(defn- expect
"Expects the first token in list to be of given kind.