aboutsummaryrefslogtreecommitdiff
path: root/src/cljcc/analyzer.clj
diff options
context:
space:
mode:
Diffstat (limited to 'src/cljcc/analyzer.clj')
-rw-r--r--src/cljcc/analyzer.clj17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/cljcc/analyzer.clj b/src/cljcc/analyzer.clj
new file mode 100644
index 0000000..b7d42a2
--- /dev/null
+++ b/src/cljcc/analyzer.clj
@@ -0,0 +1,17 @@
+(ns cljcc.analyzer
+ (:require [cljcc.lexer :as l]
+ [cljcc.parser :as p]))
+
+()
+
+(defn validate [ast])
+
+(defn- validate-from-src [s]
+ (-> s
+ l/lex
+ p/parse
+ validate))
+
+(comment
+
+ ())