-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPLoxASTGenerator.py
74 lines (59 loc) · 1.98 KB
/
PLoxASTGenerator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
exprTypes=[
"Binary : Expr left, Token operator, Expr right",
"Grouping : Expr expression",
"Literal : object value",
"Unary : Token operator, Expr right"
]
def defineAccept(text:str,baseName:str,className:str)->str:
indentText=' '
methodText='def accept(self,visitor):\n'
text+='\n'
text+=indentText
text+=methodText
text+=indentText*2
text+='return visitor.visit{}{}(self)\n'.format(className,baseName)
return text
def defineAst(type:str,baseName:str="Expr")->str:
memberText='self.{}={}'
constructorText='def __init__(self'
indentText=' '
superText='super().__init__()'
classText="class {}({}): \n"
className=type.split(':')[0].strip()
fields=type.split(':')[1].strip()
fieldTuples=fields.split(',')
bluePrintText=classText.format(className,baseName)
bluePrintText+=indentText
bluePrintText+=constructorText
for t in fieldTuples:
t=t.strip()
tClass=t.split(' ')[0]
tName=t.split(' ')[1]
tInit=',{}:{}'.format(tName,tClass)
bluePrintText+=tInit
bluePrintText+='):\n'
for t in fieldTuples:
t=t.strip()
tName=t.split(' ')[1]
bluePrintText+=indentText
bluePrintText+=indentText
bluePrintText+=memberText.format(tName,tName)
bluePrintText+='\n'
bluePrintText=defineAccept(bluePrintText,baseName,className)
return bluePrintText
def defineVisitor(baseName:str,types:list):
indentText=' '
annontationText='@abstractmethod'
bluePrintText=''
bluePrintText+='class Visitor(ABC):\n'
for type in types:
typeName=type.split(':')[0].strip()
bluePrintText+=indentText
bluePrintText+=annontationText
bluePrintText+='\n'
bluePrintText+=indentText
bluePrintText+='def visit{}{}(self,{}):\n'.format(typeName,baseName,baseName)
bluePrintText+=indentText*2
bluePrintText+='pass\n'
bluePrintText+='\n'
return bluePrintText