| Index: src/ast/ast.h
|
| diff --git a/src/ast/ast.h b/src/ast/ast.h
|
| index d75294ecc4ce8023258808d4d2ffebb9f6260c79..3dc09b1ae3cfcc5346214bf8b496e73fbbc431af 100644
|
| --- a/src/ast/ast.h
|
| +++ b/src/ast/ast.h
|
| @@ -3186,8 +3186,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(
|
|
|