2021-06-09 00:56:30 +00:00
|
|
|
import textwrap
|
|
|
|
import os
|
|
|
|
from lark import Lark
|
|
|
|
|
2021-06-09 05:10:45 +00:00
|
|
|
from agast import Parser, Interface
|
|
|
|
|
|
|
|
p = Lark(open("grammar.lark").read(), parser="lalr", transformer=Parser())
|
2021-06-09 00:56:30 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
with open("arith.ag") as f:
|
|
|
|
data = f.read()
|
|
|
|
|
|
|
|
t = p.parse(data)
|
|
|
|
print(t)
|
|
|
|
|
|
|
|
if not os.path.exists("gen"):
|
|
|
|
os.makedirs("gen")
|
|
|
|
with open("gen/arith.py", "w") as f:
|
|
|
|
f.write(textwrap.dedent("""
|
|
|
|
from typing import Generic, TypeVar
|
|
|
|
T = TypeVar('T')
|
|
|
|
class Thunk(Generic[T]):
|
|
|
|
pass
|
|
|
|
"""))
|