| Index: src/isolate.cc
|
| diff --git a/src/isolate.cc b/src/isolate.cc
|
| index 9bec3ef6e3abe51f58fe561b97d91d925bb2e951..d5cda54a1859fac6cccb6b7e8bad31c340fb03d5 100644
|
| --- a/src/isolate.cc
|
| +++ b/src/isolate.cc
|
| @@ -772,14 +772,6 @@ bool Isolate::IsInternallyUsedPropertyName(Handle<Object> name) {
|
| }
|
|
|
|
|
| -bool Isolate::IsInternallyUsedPropertyName(Object* name) {
|
| - if (name->IsSymbol()) {
|
| - return Symbol::cast(name)->is_private();
|
| - }
|
| - return name == heap()->hidden_string();
|
| -}
|
| -
|
| -
|
| bool Isolate::MayAccess(Handle<Context> accessing_context,
|
| Handle<JSObject> receiver) {
|
| DCHECK(receiver->IsJSGlobalProxy() || receiver->IsAccessCheckNeeded());
|
|
|