-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Improve syntax error with line information. #844
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
|
||
src = """ | ||
def valid_func(): | ||
pass | ||
|
||
yield 2 | ||
""" | ||
|
||
try: | ||
compile(src, 'test.py', 'exec') | ||
except SyntaxError as ex: | ||
assert ex.lineno == 5 | ||
else: | ||
raise AssertionError("Must throw syntax error") | ||
|
This file contains hidden or 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 hidden or 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 hidden or 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,10 +1,26 @@ | ||
use rustpython_parser::error::ParseError; | ||
use rustpython_parser::lexer::Location; | ||
|
||
use std::error::Error; | ||
use std::fmt; | ||
|
||
#[derive(Debug)] | ||
pub enum CompileError { | ||
pub struct CompileError { | ||
pub error: CompileErrorType, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Maybe something like |
||
pub location: Location, | ||
} | ||
|
||
impl From<ParseError> for CompileError { | ||
fn from(error: ParseError) -> Self { | ||
CompileError { | ||
error: CompileErrorType::Parse(error), | ||
location: Default::default(), // TODO: extract location from parse error! | ||
} | ||
} | ||
} | ||
|
||
#[derive(Debug)] | ||
pub enum CompileErrorType { | ||
/// Invalid assignment, cannot store value in target. | ||
Assign(&'static str), | ||
/// Invalid delete | ||
|
@@ -25,17 +41,20 @@ pub enum CompileError { | |
|
||
impl fmt::Display for CompileError { | ||
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { | ||
match self { | ||
CompileError::Assign(target) => write!(f, "can't assign to {}", target), | ||
CompileError::Delete(target) => write!(f, "can't delete {}", target), | ||
CompileError::ExpectExpr => write!(f, "Expecting expression, got statement"), | ||
CompileError::Parse(err) => write!(f, "{}", err), | ||
CompileError::StarArgs => write!(f, "Two starred expressions in assignment"), | ||
CompileError::InvalidBreak => write!(f, "'break' outside loop"), | ||
CompileError::InvalidContinue => write!(f, "'continue' outside loop"), | ||
CompileError::InvalidReturn => write!(f, "'return' outside function"), | ||
CompileError::InvalidYield => write!(f, "'yield' outside function"), | ||
} | ||
match &self.error { | ||
CompileErrorType::Assign(target) => write!(f, "can't assign to {}", target), | ||
CompileErrorType::Delete(target) => write!(f, "can't delete {}", target), | ||
CompileErrorType::ExpectExpr => write!(f, "Expecting expression, got statement"), | ||
CompileErrorType::Parse(err) => write!(f, "{}", err), | ||
CompileErrorType::StarArgs => write!(f, "Two starred expressions in assignment"), | ||
CompileErrorType::InvalidBreak => write!(f, "'break' outside loop"), | ||
CompileErrorType::InvalidContinue => write!(f, "'continue' outside loop"), | ||
CompileErrorType::InvalidReturn => write!(f, "'return' outside function"), | ||
CompileErrorType::InvalidYield => write!(f, "'yield' outside function"), | ||
}?; | ||
|
||
// Print line number: | ||
write!(f, " at line {:?}", self.location.get_row()) | ||
} | ||
} | ||
|
||
|
This file contains hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.