-
Notifications
You must be signed in to change notification settings - Fork 196
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
Christoph/feat/gen structs #906
Closed
Closed
Changes from all commits
Commits
Show all changes
3 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 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
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
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
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,5 +1,6 @@ | ||
pub mod contracts; | ||
pub mod expressions; | ||
pub mod functions; | ||
pub mod generics; | ||
pub mod module; | ||
pub mod types; |
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 |
---|---|---|
@@ -0,0 +1,87 @@ | ||
use crate::ast::{GenericParameter, TypeDesc}; | ||
use crate::node::Node; | ||
use crate::{ParseFailed, ParseResult, Parser, TokenKind}; | ||
|
||
/// Parse a single generic parameter (eg. `T:SomeTrait` in `fn foo<T: SomeTrait>(some_arg: u256) -> bool`). | ||
/// # Panics | ||
/// Panics if the first token isn't `Name`. | ||
pub fn parse_generic_param(par: &mut Parser) -> ParseResult<GenericParameter> { | ||
use TokenKind::*; | ||
|
||
let name = par.assert(Name); | ||
match par.optional(Colon) { | ||
Some(_) => { | ||
let bound = par.expect(TokenKind::Name, "failed to parse generic bound")?; | ||
Ok(GenericParameter::Bounded { | ||
name: Node::new(name.text.into(), name.span), | ||
bound: Node::new( | ||
TypeDesc::Base { | ||
base: bound.text.into(), | ||
}, | ||
bound.span, | ||
), | ||
}) | ||
} | ||
None => Ok(GenericParameter::Unbounded(Node::new( | ||
name.text.into(), | ||
name.span, | ||
))), | ||
} | ||
} | ||
|
||
/// Parse an angle-bracket-wrapped list of generic arguments (eg. `<T, R: SomeTrait>` in `fn foo<T, R: SomeTrait>(some_arg: u256) -> bool`). | ||
/// # Panics | ||
/// Panics if the first token isn't `<`. | ||
pub fn parse_generic_params(par: &mut Parser) -> ParseResult<Node<Vec<GenericParameter>>> { | ||
use TokenKind::*; | ||
let mut span = par.assert(Lt).span; | ||
|
||
let mut args = vec![]; | ||
|
||
let expect_end = |par: &mut Parser| { | ||
// If there's no comma, the next token must be `>` | ||
match par.peek_or_err()? { | ||
Gt => Ok(par.next()?.span), | ||
_ => { | ||
let tok = par.next()?; | ||
par.unexpected_token_error( | ||
&tok, | ||
"Unexpected token while parsing generic arg list", | ||
vec!["Expected a `>` here".to_string()], | ||
); | ||
Err(ParseFailed) | ||
} | ||
} | ||
}; | ||
|
||
loop { | ||
match par.peek_or_err()? { | ||
Gt => { | ||
span += par.next()?.span; | ||
break; | ||
} | ||
Name => { | ||
let typ = parse_generic_param(par)?; | ||
args.push(typ); | ||
if par.peek() == Some(Comma) { | ||
par.next()?; | ||
} else { | ||
span += expect_end(par)?; | ||
break; | ||
} | ||
} | ||
|
||
// Invalid generic argument. | ||
_ => { | ||
let tok = par.next()?; | ||
par.unexpected_token_error( | ||
&tok, | ||
"failed to parse list of generic parameters", | ||
vec!["Expected a generic parameter name such as `T` here".to_string()], | ||
); | ||
return Err(ParseFailed); | ||
} | ||
} | ||
} | ||
Ok(Node::new(args, span)) | ||
} |
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's basically what I'm currently stuck at. I'm not yet sure how to properly resolve generic structs in MIR.