-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPLox.py
68 lines (56 loc) · 1.85 KB
/
PLox.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
68
from PLoxScanner import Scanner
from PLoxDef import *
from PLoxParser import Parser
from PLoxResolver import Resolver
from PLoxInterpreter import Interpreter
class PLox(object):
hadError=False
def __init__(self):
super().__init__()
self.data=None
self.interpreter=Interpreter()
def runFile(self,filepath:str):
with open(filepath, 'r') as file:
self.data = file.read()
self.run(self.data)
if PLox.hadError:
exit(65)
def runPrompt(self):
while True:
print(">", end='')
line=input()
#print(len(line))
if(len(line)==0):
print("Leaving REPL Mode...")
break
self.run(line)
PLox.hadError=False
def run(self,source:str):
scanner=Scanner(source)
tokens=scanner.scanTokens()
parser=Parser(tokens)
statments=parser.parse()
resolver=Resolver(self.interpreter)
if PLox.hadError:
return;
resolver.resolve(statments)
self.interpreter.interpret(statments)
#printer=ASTPrinter()
#print(printer.print(expression))
@staticmethod
def error(line:int,message:str):
PLox.report(line,"",message)
@staticmethod
def tokenError(token:Token,message:str):
if token.type==TokenType.EOF:
PLox.report(token.line,"at end",message)
else:
PLox.report(token.line,"at '"+token.lexeme+"'",message)
@staticmethod
def runtimeError(error:RunTimeError):
PLox.hadError=True
print(error.message+" [line"+str(error.token.line)+"]")
@staticmethod
def report(line:int,where:str,message:str):
print("line {} error, {}:{}".format(line,where,message))
PLox.hadError=True