Skip to content

Commit

Permalink
Add missing FallthroughStmt rule
Browse files Browse the repository at this point in the history
  • Loading branch information
azawawi committed Nov 29, 2017
1 parent 2ee529c commit c3fd42d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lib/Inline/Go/Grammar.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,9 @@ rule BreakStmt { "break" <Label>? }
# ContinueStmt = "continue" [ Label ] .
rule ContinueStmt { "continue" <Label>? }

# FallthroughStmt = "fallthrough" .
rule FallthroughStmt { "fallthrough" }

# GotoStmt = "goto" Label .
rule GotoStmt { "goto" <Label> }

Expand Down

0 comments on commit c3fd42d

Please sign in to comment.