summaryrefslogtreecommitdiff
path: root/tnslc/tnslc.tnsl
diff options
context:
space:
mode:
Diffstat (limited to 'tnslc/tnslc.tnsl')
-rw-r--r--tnslc/tnslc.tnsl6
1 files changed, 3 insertions, 3 deletions
diff --git a/tnslc/tnslc.tnsl b/tnslc/tnslc.tnsl
index bb7992c..2df15a3 100644
--- a/tnslc/tnslc.tnsl
+++ b/tnslc/tnslc.tnsl
@@ -35,9 +35,9 @@ usage:
fout.init(DEFAULT_FOUT)
;/
- utils.Vector v = parse.gen_token_list(~fin)
- parse.print_token_list(~v)
- parse.end_token_list(~v)
+ parse.Node n = parse.generate_ast(~fin)
+ parse.print_ast(~n)
+ n.end()
fin.end()
fout.end()