(node *ast.Node)
| 1432 | } |
| 1433 | |
| 1434 | func (b *Binder) checkStrictModeWithStatement(node *ast.Node) { |
| 1435 | // Grammar checking for withStatement |
| 1436 | b.errorOnFirstToken(node, diagnostics.X_with_statements_are_not_allowed_in_strict_mode) |
| 1437 | } |
| 1438 | |
| 1439 | func (b *Binder) checkStrictModeLabeledStatement(node *ast.Node) { |
| 1440 | // Grammar checking for labeledStatement |