diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 299301db..d996167b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -54,6 +54,11 @@ int main(int argc, char *argv[]) {
g_cur_phase = "Parse";
AST::Crate crate = Parse_Crate(params.infile);
+
+ // Iterate all items in the AST, applying syntax extensions
+ g_cur_phase = "Syn Exts";
+ // TODO:
+
g_cur_phase = "PostParse";
crate.post_parse();
|