|
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 |