--- dlls/jscript/parser.y.orig 2008-11-07 17:09:33.000000000 +0100 +++ dlls/jscript/parser.y 2008-11-09 20:07:29.981649187 +0100 @@ -317,7 +317,7 @@ /* 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