Added the LCURLY for switch statements

This commit is contained in:
Oliver Burn 2002-10-13 11:21:47 +00:00
parent 2cca9c57c9
commit e9faeb047f
1 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ traditionalStatement
| "return"^ (expression)? SEMI!
// switch/case statement
| "switch"^ LPAREN! expression RPAREN! LCURLY!
| "switch"^ LPAREN! expression RPAREN! LCURLY
( casesGroup )*
RCURLY