Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 246570
Collapse All | Expand All

(-)parser.old.y (-1 / +1 lines)
Lines 317-323 Link Here
317
/* ECMA-262 3rd Edition    12.1 */
317
/* ECMA-262 3rd Edition    12.1 */
318
Block
318
Block
319
        : '{' StatementList '}' { $$ = new_block_statement(ctx, $2); }
319
        : '{' StatementList '}' { $$ = new_block_statement(ctx, $2); }
320
        | '{' '}'               { $$ = new_block_statement(ctx, NULL) }
320
        | '{' '}'               { $$ = new_block_statement(ctx, NULL); }
321
321
322
/* ECMA-262 3rd Edition    12.2 */
322
/* ECMA-262 3rd Edition    12.2 */
323
VariableStatement
323
VariableStatement

Return to bug 246570