Additional TODO

This commit is contained in:
greg 2018-02-21 02:09:40 -08:00
parent bcec8e27f8
commit c2cd419e5a
1 changed files with 10 additions and 0 deletions

10
TODO.md
View File

@ -19,3 +19,13 @@
- parser: add a "debug" field to the Parser struct for all debug-related things
-scala-style html"dfasfsadf${}" string interpolations!
*Compiler passes architecture
-ProgrammingLanguageInterface defines a evaluate_in_repl() and evaluate_no_repl() functions
-these take in a vec of CompilerPasses
struct CompilerPass {
name: String,
run: fn(PrevPass) -> NextPass
}