| Index: src/ast/scopes.h
|
| diff --git a/src/ast/scopes.h b/src/ast/scopes.h
|
| index 40fa7e9279b684a7d4ef47bb53fa7698908bd2b2..2e5a1a988fb0fb73d8a9a932e5f273b26f199f96 100644
|
| --- a/src/ast/scopes.h
|
| +++ b/src/ast/scopes.h
|
| @@ -160,9 +160,9 @@ class Scope: public ZoneObject {
|
| // Create a new unresolved variable.
|
| VariableProxy* NewUnresolved(AstNodeFactory* factory,
|
| const AstRawString* name,
|
| - Variable::Kind kind = Variable::NORMAL,
|
| int start_position = kNoSourcePosition,
|
| - int end_position = kNoSourcePosition) {
|
| + int end_position = kNoSourcePosition,
|
| + Variable::Kind kind = Variable::NORMAL) {
|
| // Note that we must not share the unresolved variables with
|
| // the same name because they may be removed selectively via
|
| // RemoveUnresolved().
|
|
|