-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add declaration attributes to the parser.
These will parse Rust-like attributes for any top-level item. E.g., `#[attrib(arg0, arg1)]` They are ignored by the rest of the compiler at this stage.
- Loading branch information
Showing
9 changed files
with
460 additions
and
43 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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
use crate::priv_prelude::*; | ||
|
||
// Attributes can have any number of arguments: | ||
// | ||
// #[attribute] | ||
// #[attribute()] | ||
// #[attribute(value)] | ||
// #[attribute(value0, value1, value2)] | ||
|
||
pub struct AttributeDecl { | ||
pub hash_token: HashToken, | ||
pub attribute: SquareBrackets<Attribute>, | ||
} | ||
|
||
impl AttributeDecl { | ||
pub fn span(&self) -> Span { | ||
Span::join(self.hash_token.span(), self.attribute.span()) | ||
} | ||
} | ||
|
||
impl Parse for AttributeDecl { | ||
fn parse(parser: &mut Parser) -> ParseResult<Self> { | ||
let hash_token = parser.parse()?; | ||
let attribute = parser.parse()?; | ||
Ok(AttributeDecl { | ||
hash_token, | ||
attribute, | ||
}) | ||
} | ||
} | ||
|
||
#[derive(Debug)] | ||
pub struct Attribute { | ||
pub name: Ident, | ||
pub args: Option<Parens<Punctuated<Ident, CommaToken>>>, | ||
} | ||
|
||
impl Attribute { | ||
pub fn span(&self) -> Span { | ||
self.args | ||
.as_ref() | ||
.map(|args| Span::join(self.name.span().clone(), args.span())) | ||
.unwrap_or_else(|| self.name.span().clone()) | ||
} | ||
} | ||
|
||
impl Parse for Attribute { | ||
fn parse(parser: &mut Parser) -> ParseResult<Self> { | ||
let name = parser.parse()?; | ||
let args = parser.parse().ok(); | ||
Ok(Attribute { name, args }) | ||
} | ||
} | ||
|
||
impl ParseToEnd for Attribute { | ||
fn parse_to_end<'a, 'e>(mut parser: Parser<'a, 'e>) -> ParseResult<(Self, ParserConsumed<'a>)> { | ||
let attrib = parser.parse()?; | ||
match parser.check_empty() { | ||
Some(consumed) => Ok((attrib, consumed)), | ||
None => Err(parser.emit_error(ParseErrorKind::UnexpectedTokenAfterAttribute)), | ||
} | ||
} | ||
} |
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.