Skip to content

Fix the definition of MetaItem and MetaSeq #330

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 2 commits into from
May 9, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/attributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@
>    | IDENTIFIER `=` LITERAL
>    | IDENTIFIER `(` LITERAL `)`
>    | IDENTIFIER `(` _MetaSeq_ `)`
>    | IDENTIFIER `(` _MetaSeq_ `,` `)`
>
> _MetaSeq_ :
>       EMPTY
>    | _MetaItem_
>    | _MetaSeq_ `,` _MetaItem_
>    | _MetaItem_ `,` _MetaSeq_

Any item declaration may have an _attribute_ applied to it. Attributes in Rust
are modeled on Attributes in ECMA-335, with the syntax coming from ECMA-334
Expand Down