jscript: Fix build with bison 2.4.

This commit is contained in:
Ryan Schmidt 2008-11-10 01:04:47 -06:00 committed by Alexandre Julliard
parent 44540a664f
commit 2827a74cb1
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ StatementList_opt
/* ECMA-262 3rd Edition 12.1 */
Block
: '{' StatementList '}' { $$ = new_block_statement(ctx, $2); }
| '{' '}' { $$ = new_block_statement(ctx, NULL) }
| '{' '}' { $$ = new_block_statement(ctx, NULL); }
/* ECMA-262 3rd Edition 12.2 */
VariableStatement