diff options
author | Juan J. Martinez <jjm@usebox.net> | 2022-09-02 07:49:36 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2022-09-02 07:49:36 +0100 |
commit | 739accd5203ecc64470f5a3f756fdadede20d43d (patch) | |
tree | 6cb431338297f2b6c4b5866d2bde3215e9d8e973 | |
parent | b7f1f58d246d0fb61bfd954e0638c27da1460a03 (diff) | |
download | micro-lang-hs-739accd5203ecc64470f5a3f756fdadede20d43d.tar.gz micro-lang-hs-739accd5203ecc64470f5a3f756fdadede20d43d.zip |
For completeness
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,8 +21,8 @@ Check the [language spec](language.md) for a taste of what is planned. Currently the compiler uses parsec (Monadic parser combinators) following this planned pipeline: -* Lexer -* Parser +* Lexer; lexical analysis +* Parser; syntax analysis * Analyzer; semantic analysis, type-check, fold constant, etc * Generator: emit intermediate code for the target (e.g. ASM files); (maybe) Intermediate representation |