-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f15465a
commit 64563ee
Showing
16 changed files
with
1,994 additions
and
253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,48 @@ | ||
from error_line import * | ||
from Classes.error_line import * | ||
|
||
|
||
class Error: | ||
def __init__(self, pos_start, pos_end, error_name, details): | ||
self.pos_start = pos_start | ||
self.pos_end = pos_end | ||
self.error_name = error_name | ||
self.details = details | ||
|
||
def as_string(self): | ||
result = f'{self.error_name}: {self.details}\n' | ||
result = f'{self.error_name}: {self.details}\n' | ||
result += f'File {self.pos_start.fn}, line {self.pos_start.ln + 1}' | ||
result += '\n\n' + \ | ||
string_with_arrows(self.pos_start.ftxt, | ||
self.pos_start, self.pos_end) | ||
result += '\n\n' + string_with_arrows(self.pos_start.ftxt, self.pos_start, self.pos_end) | ||
return result | ||
|
||
|
||
class IllegalCharError(Error): | ||
def __init__(self, pos_start, pos_end, details): | ||
super().__init__(pos_start, pos_end, 'Illegal Character', details) | ||
|
||
class ExpectedCharError(Error): | ||
def __init__(self, pos_start, pos_end, details): | ||
super().__init__(pos_start, pos_end, 'Expected Character', details) | ||
|
||
class InvalidSyntaxError(Error): | ||
def __init__(self, pos_start, pos_end, details=''): | ||
super().__init__(pos_start, pos_end, 'Invalid Syntax', details) | ||
|
||
|
||
class RunTimeError(Error): | ||
class RTError(Error): | ||
def __init__(self, pos_start, pos_end, details, context): | ||
super().__init__(pos_start, pos_end, 'Run Time Error', details) | ||
super().__init__(pos_start, pos_end, 'Runtime Error', details) | ||
self.context = context | ||
|
||
def as_string(self): | ||
result = self.generate_traceback() | ||
result += f'{self.error_name}: {self.details}\n' | ||
result += \ | ||
string_with_arrows(self.pos_start.ftxt, | ||
self.pos_start, self.pos_end) | ||
|
||
result = self.generate_traceback() | ||
result += f'{self.error_name}: {self.details}' | ||
result += '\n\n' + string_with_arrows(self.pos_start.ftxt, self.pos_start, self.pos_end) | ||
return result | ||
|
||
def generate_traceback(self): | ||
result = "" | ||
result = '' | ||
pos = self.pos_start | ||
ctx = self.context | ||
while ctx: | ||
result = f'File {pos.fn}, line {pos.ln + 1}, {ctx.display_name}\n' + result | ||
result = f' File {pos.fn}, line {str(pos.ln + 1)}, in {ctx.display_name}\n' + result | ||
pos = ctx.parent_entry_pos | ||
ctx = ctx.parent | ||
return "Traceback recent calls: "+result | ||
|
||
return 'Traceback (most recent call last):\n' + result |
Oops, something went wrong.