diff options
Diffstat (limited to 'tnslc/compile/codegen.tnsl')
| -rw-r--r-- | tnslc/compile/codegen.tnsl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tnslc/compile/codegen.tnsl b/tnslc/compile/codegen.tnsl index 05d0fb7..636f16b 100644 --- a/tnslc/compile/codegen.tnsl +++ b/tnslc/compile/codegen.tnsl @@ -41,6 +41,7 @@ ast.end() ;/ + /; generate (~utils.File fin, fout) # Parse files into AST parse.Node ast = parse.generate_ast(fin) @@ -60,6 +61,9 @@ # Compile code mod.compile(~buffer) + # Tests + # var_tests(~buffer) + # Write assembly to output file fout.create() buffer.write_to(fout) |