-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.py
44 lines (38 loc) · 1.85 KB
/
errors.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
class Error:
def __init__(self, title, details, pos_start, pos_end):
self.pos_start = pos_start
self.pos_end = pos_end
self.error_title = title
self.details = details
def __repr__(self):
res = f'{self.error_title}\n'
res += f'{self.pos_start.line + 1} :הרושב {self.pos_start.file_name} :ץבוקב הז\n'
res += f'{self.details}'
return res
class IllegalCharError(Error):
def __init__(self, details, pos_start, pos_end):
super().__init__("ינלאמש הזה ותה ,םירקי םיחרזא", details, pos_start, pos_end)
class InvalidSyntaxError(Error):
def __init__(self, details, pos_start, pos_end):
super().__init__("הזה חוסינה תא ןיבמ אל ינא יכ ,רפסה תיבל רוזחתש יאדכ דיפל", details, pos_start, pos_end)
class ExpectedCharError(Error):
def __init__(self, details, pos_start, pos_end):
super().__init__("םינכומ אל ונספתנ ירעצל ,םירקי םיחרזא", details, pos_start, pos_end)
class RTError(Error):
def __init__(self, details, pos_start, pos_end, context):
super().__init__(":הלשממל הצירה ןמזב האיגש תארק", details, pos_start, pos_end)
self.context = context
def create_traceback(self):
result = ''
pos= self.pos_start
context = self.context
while context:
result = f'.{context.dis_name} :ב .{str(pos.line + 1)} :הרושב {pos.file_name} :ץבוקב הז\n' + result
pos = context.parent_position
context = context.parent
return ':עגרל הרוחא ךלנ ואוב םירקי םיחרזא\n\n' + result
def __repr__(self):
res = self.create_traceback()
res += f'{self.error_title}\n'
res += f'{self.details}\n'
return res