Skip to content

Commit

Permalink
implement NYI messages for six different phasers
Browse files Browse the repository at this point in the history
  • Loading branch information
moritz committed Jul 19, 2010
1 parent cf5f19a commit 2f4733e
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Perl6/Grammar.pm
Expand Up @@ -478,6 +478,18 @@ token statement_prefix:sym<BEGIN> { <sym> <blorst> }
token statement_prefix:sym<CHECK> { <sym> <blorst> }
token statement_prefix:sym<INIT> { <sym> <blorst> }
token statement_prefix:sym<END> { <sym> <blorst> }
token statement_prefix:sym<FIRST> { <sym> <blorst>
<.panic("FIRST phaser not yet implemented")> }
token statement_prefix:sym<LAST> { <sym> <blorst>
<.panic("LAST phaser not yet implemented")> }
token statement_prefix:sym<ENTER> { <sym> <blorst>
<.panic("ENTER phaser not yet implemented")> }
token statement_prefix:sym<LEAVE> { <sym> <blorst>
<.panic("LEAVE phaser not yet implemented")> }
token statement_prefix:sym<PRE> { <sym> <blorst>
<.panic("PRE phaser not yet implemented")> }
token statement_prefix:sym<POST> { <sym> <blorst>
<.panic("POST phaser not yet implemented")> }
token statement_prefix:sym<sink> { <sym> <blorst> }
token statement_prefix:sym<try> { <sym> <blorst> }
token statement_prefix:sym<gather>{ <sym> <blorst> }
Expand Down

0 comments on commit 2f4733e

Please sign in to comment.