Start moving the examples into tests

This commit is contained in:
John Doty 2024-06-15 07:52:16 -07:00
parent d3b8d0e836
commit e04aa1966e
6 changed files with 221 additions and 237 deletions

View file

@ -300,7 +300,7 @@ class Harness:
# print(f"{tokens.lines}")
# tokens.dump(end=5)
(tree, errors) = runtime.Parser(table, trace=None).parse(self.tokens)
(tree, errors) = runtime.Parser(table).parse(self.tokens)
parse_time = time.time()
self.tree = tree
self.errors = errors