summaryrefslogtreecommitdiff
path: root/tnslc/tnslc.tnsl
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2024-07-21 01:12:19 -0400
committerKyle Gunger <kgunger12@gmail.com>2024-07-21 01:12:19 -0400
commit0c04a61ef15f02eadc24d46b9527e0afb74040a4 (patch)
tree0947520c5cc4060b4a5b3b55730cdfedeb2d6ffb /tnslc/tnslc.tnsl
parent308a427f3cdb2c7f618b0d48640d064b88bbbceb (diff)
Begin ast funcs
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()