| Index: src/scopes.h
|
| diff --git a/src/scopes.h b/src/scopes.h
|
| index b8a1aed0d90443b926982f236e27a25b4b3b254c..972c21007aca1477e5739f512597cde8976b99a3 100644
|
| --- a/src/scopes.h
|
| +++ b/src/scopes.h
|
| @@ -149,9 +149,7 @@ class Scope: public ZoneObject {
|
| void AddParameter(Variable* var);
|
|
|
| // Create a new unresolved variable.
|
| - virtual VariableProxy* NewUnresolved(Handle<String> name,
|
| - bool inside_with,
|
| - int position = RelocInfo::kNoPosition);
|
| + virtual VariableProxy* NewUnresolved(Handle<String> name, bool inside_with);
|
|
|
| // Remove a unresolved variable. During parsing, an unresolved variable
|
| // may have been added optimistically, but then only the variable name
|
| @@ -473,9 +471,7 @@ class DummyScope : public Scope {
|
|
|
| virtual Variable* Lookup(Handle<String> name) { return NULL; }
|
|
|
| - virtual VariableProxy* NewUnresolved(Handle<String> name,
|
| - bool inside_with,
|
| - int position = RelocInfo::kNoPosition) {
|
| + virtual VariableProxy* NewUnresolved(Handle<String> name, bool inside_with) {
|
| return NULL;
|
| }
|
|
|
|
|