| Index: src/ast/ast.h
|
| diff --git a/src/ast/ast.h b/src/ast/ast.h
|
| index a274c10dbc0292dfe50d8be1d48df95e1e9edb8a..d515c2f43b16858d0531e2b318e967e76e67de14 100644
|
| --- a/src/ast/ast.h
|
| +++ b/src/ast/ast.h
|
| @@ -1654,7 +1654,7 @@ class VariableProxy final : public Expression {
|
| friend class AstNodeFactory;
|
|
|
| VariableProxy(Variable* var, int start_position, int end_position);
|
| - VariableProxy(const AstRawString* name, Variable::Kind variable_kind,
|
| + VariableProxy(const AstRawString* name, VariableKind variable_kind,
|
| int start_position, int end_position);
|
| explicit VariableProxy(const VariableProxy* copy_from);
|
|
|
| @@ -3247,7 +3247,7 @@ class AstNodeFactory final BASE_EMBEDDED {
|
| }
|
|
|
| VariableProxy* NewVariableProxy(const AstRawString* name,
|
| - Variable::Kind variable_kind,
|
| + VariableKind variable_kind,
|
| int start_position = kNoSourcePosition,
|
| int end_position = kNoSourcePosition) {
|
| DCHECK_NOT_NULL(name);
|
|
|