jscript: Fix build with bison 2.4.
This commit is contained in:
parent
44540a664f
commit
2827a74cb1
|
@ -317,7 +317,7 @@ StatementList_opt
|
||||||
/* ECMA-262 3rd Edition 12.1 */
|
/* ECMA-262 3rd Edition 12.1 */
|
||||||
Block
|
Block
|
||||||
: '{' StatementList '}' { $$ = new_block_statement(ctx, $2); }
|
: '{' StatementList '}' { $$ = new_block_statement(ctx, $2); }
|
||||||
| '{' '}' { $$ = new_block_statement(ctx, NULL) }
|
| '{' '}' { $$ = new_block_statement(ctx, NULL); }
|
||||||
|
|
||||||
/* ECMA-262 3rd Edition 12.2 */
|
/* ECMA-262 3rd Edition 12.2 */
|
||||||
VariableStatement
|
VariableStatement
|
||||||
|
|
Loading…
Reference in New Issue