Changeset 36
- Timestamp:
- 06/05/08 15:38:27 (7 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
axdt/trunk/org.axdt.as3/src/org/axdt/as3/imp/parser/AS3Parser.g
r31 r36 254 254 FormalParameters$$FormalParameter ::= FormalParameter | FormalParameters COMMA FormalParameter 255 255 256 FormalParameter$FormalParameter ::= REST$ IDENTIFIER$Name 256 257 FormalParameter$FormalParameter ::= IDENTIFIER$Name COLON$ Type 257 258 FormalParameter$FormalParameter ::= IDENTIFIER$Name COLON$ STAR$Dyn … … 297 298 | WhileStatement 298 299 | ForStatement 299 | ForEachStatement300 300 | SwitchStatement 301 301 | TryStatement … … 352 352 DoStatement ::= do$ Statement while$ LPAREN$ Expression$Condition RPAREN$ SemiOpt$ 353 353 354 ForStatement$ForStatement ::= for$ LPAREN$ For Init SEMI$ ForCondition SEMI$ ForUpdateRPAREN$ Statement$Statement355 356 ForStatementNoShortIf$ForStatement ::= for$ LPAREN$ ForInit SEMI$ ForCondition SEMI$ ForUpdate RPAREN$ StatementNoShortIf$Statement357 358 For EachStatement$ForEachStatement ::= for$ each$ LPAREN$ LocalVariableDeclaration in$ Expression RPAREN$ Statement$Statement359 354 ForStatement$ForStatement ::= for$ LPAREN$ ForHead RPAREN$ Statement$Statement 355 ForStatement$ForStatement ::= for$ each$ LPAREN$ ForHead RPAREN$ Statement$Statement 356 357 ForStatementNoShortIf$ForStatement ::= for$ LPAREN$ ForHead RPAREN$ StatementNoShortIf$Statement 358 ForStatementNoShortIf$ForStatement ::= for$ each$ LPAREN$ ForHead RPAREN$ StatementNoShortIf$Statement 359 360 360 ContinueStatement$ContinueStatement ::= continue$ SemiOpt$ 361 361 BreakStatement$BreakStatement ::= break$ SemiOpt$ … … 365 365 CatchStatements$$CatchStatement ::= CatchStatement | CatchStatements CatchStatement 366 366 367 CatchStatement$CatchStatement ::= catch$ LPAREN$ VariableDeclarator RPAREN$ Block 367 CatchStatement$CatchStatement ::= catch$ LPAREN$ VariableDeclarator RPAREN$ Block 368 369 ForHead$ForHead ::= ForInit SEMI$ ForCondition SEMI$ ForUpdate 370 ForHead$ForHead ::= LocalVariableDeclaration in$ Expression 368 371 369 372 ForInit ::= %empty
