| Index: src/scopes.cc
|
| diff --git a/src/scopes.cc b/src/scopes.cc
|
| index 0a205ae129ebfb342fdf0c23bea4fa5e195afbe3..a15903c77481780b0508dcce299040020478c57c 100644
|
| --- a/src/scopes.cc
|
| +++ b/src/scopes.cc
|
| @@ -321,14 +321,12 @@ void Scope::AddParameter(Variable* var) {
|
| }
|
|
|
|
|
| -VariableProxy* Scope::NewUnresolved(Handle<String> name,
|
| - bool inside_with,
|
| - int position) {
|
| +VariableProxy* Scope::NewUnresolved(Handle<String> name, bool inside_with) {
|
| // Note that we must not share the unresolved variables with
|
| // the same name because they may be removed selectively via
|
| // RemoveUnresolved().
|
| ASSERT(!resolved());
|
| - VariableProxy* proxy = new VariableProxy(name, false, inside_with, position);
|
| + VariableProxy* proxy = new VariableProxy(name, false, inside_with);
|
| unresolved_.Add(proxy);
|
| return proxy;
|
| }
|
|
|