Skip to content

Instantly share code, notes, and snippets.

Created July 22, 2010 03:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/485540 to your computer and use it in GitHub Desktop.
Save anonymous/485540 to your computer and use it in GitHub Desktop.
pmichaud@plum:~/rakudo$ git diff
diff --git a/src/Perl6/Grammar.pm b/src/Perl6/Grammar.pm
index f8a92f7..9bda6b6 100644
--- a/src/Perl6/Grammar.pm
+++ b/src/Perl6/Grammar.pm
@@ -899,10 +899,10 @@ token scope_declarator:sym<has> { <sym> <scoped('has
token scope_declarator:sym<augment> { <sym> <scoped('augment')> }
token scope_declarator:sym<anon> { <sym> <scoped('anon')> }
token scope_declarator:sym<supersede> {
- <sym> <.panic: '"supersede" not yet implemented'>
+ <sym> <scoped('supersede')> <.panic: '"supersede" not yet implemented'>
}
token scope_declarator:sym<state> {
- <sym> <.panic: '"state" not yet implemented'>
+ <sym> <scoped('state')> <.panic: '"state" not yet implemented'>
}
rule scoped($*SCOPE) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment