diff options
Diffstat (limited to 'tnslc/test.tnsl')
| -rw-r--r-- | tnslc/test.tnsl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tnslc/test.tnsl b/tnslc/test.tnsl index 7570215..b515c49 100644 --- a/tnslc/test.tnsl +++ b/tnslc/test.tnsl @@ -28,10 +28,11 @@ usage: utils.File fin fin.init(argv{1}) - utils.Vector vec = parse.gen_token_list(~fin) - parse.print_token_list(~vec) - parse.end_token_list(~vec) - + parse.Node ast = parse.generate_ast(~fin) + ast.update_children() + parse.print_ast(~ast) + ast.end() + fin.end() return 0 |