update refactoring and add new features

This commit is contained in:
2026-07-24 20:55:58 -07:00
parent 7f12bc7f40
commit 03fbbbcf28
69 changed files with 16332 additions and 17600 deletions
+10
View File
@@ -0,0 +1,10 @@
from CLI import MedeiaLexer
class DummyDocument:
def __init__(self, lines):
self.lines = list(lines)
lexer = MedeiaLexer()
doc = DummyDocument([r'C:\path\to\file'])
print(lexer.lex_document(doc)(0))