| Index: src/ast/ast.h
|
| diff --git a/src/ast/ast.h b/src/ast/ast.h
|
| index 27cc667eb11991750796920c77ea7dfe31e5fa9c..281972d7bf5d0ae4b834d9dafed5826e03f2a80b 100644
|
| --- a/src/ast/ast.h
|
| +++ b/src/ast/ast.h
|
| @@ -3455,8 +3455,8 @@ class AstNodeFactory final BASE_EMBEDDED {
|
|
|
| SloppyBlockFunctionStatement* NewSloppyBlockFunctionStatement(
|
| Statement* statement, Scope* scope) {
|
| - return new (local_zone_)
|
| - SloppyBlockFunctionStatement(local_zone_, statement, scope);
|
| + return new (parser_zone_)
|
| + SloppyBlockFunctionStatement(parser_zone_, statement, scope);
|
| }
|
|
|
| CaseClause* NewCaseClause(
|
|
|