Framstag / semtrail

SemTrail is a small project to generate a simple WebPage for a semantic graph defined by a small DSL file
Apache License 2.0
1 stars 0 forks source link

Create two pass parser #18

Open Framstag opened 5 years ago

Framstag commented 5 years ago

Currently reading Clojure syntax and parsing actual functions is one step. We should first build a Clojure AST using a reader and then do the function execution/parsing on top of it - like real LISP-like engines do.

Framstag commented 5 years ago

...possibly using reflection to simplify the parser/AST code.