This commit is contained in:
2026-04-14 21:31:44 +12:00
commit 8be321dee1
16 changed files with 7065 additions and 0 deletions

15
find_all_tokens.py Normal file
View File

@@ -0,0 +1,15 @@
import json
from pprint import pprint
tokens = set()
with open("tests/test.json", "r") as txt:
tests : dict = json.loads(txt.read())
for test_name, test_value in tests["basic_unit_tests"].items():
for token in test_value["parsed"]:
tokens.add(list(token.keys())[0])
pprint(tokens)