| Index: src/runtime.cc
|
| diff --git a/src/runtime.cc b/src/runtime.cc
|
| index 67d7c64d1dff1b5f31aaa6069e1e3d5b21fcd1fd..2bac30473beb0732979c860175535e322cd016dc 100644
|
| --- a/src/runtime.cc
|
| +++ b/src/runtime.cc
|
| @@ -1434,7 +1434,7 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_DeclareContextSlot) {
|
| !object->IsJSContextExtensionObject()) {
|
| LookupResult lookup(isolate);
|
| object->Lookup(*name, &lookup);
|
| - if (lookup.IsProperty() && (lookup.type() == CALLBACKS)) {
|
| + if (lookup.IsFound() && (lookup.type() == CALLBACKS)) {
|
| return ThrowRedeclarationError(isolate, "const", name);
|
| }
|
| }
|
| @@ -1482,7 +1482,7 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_InitializeVarGlobal) {
|
| JSObject::cast(object)->map()->is_hidden_prototype()) {
|
| JSObject* raw_holder = JSObject::cast(object);
|
| raw_holder->LocalLookup(*name, &lookup);
|
| - if (lookup.IsProperty() && lookup.type() == INTERCEPTOR) {
|
| + if (lookup.IsFound() && lookup.type() == INTERCEPTOR) {
|
| HandleScope handle_scope(isolate);
|
| Handle<JSObject> holder(raw_holder);
|
| PropertyAttributes intercepted = holder->GetPropertyAttribute(*name);
|
| @@ -1648,7 +1648,7 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_InitializeConstContextSlot) {
|
| // GetProperty() to get the current value as it 'unholes' the value.
|
| LookupResult lookup(isolate);
|
| object->LocalLookupRealNamedProperty(*name, &lookup);
|
| - ASSERT(lookup.IsProperty()); // the property was declared
|
| + ASSERT(lookup.IsFound()); // the property was declared
|
| ASSERT(lookup.IsReadOnly()); // and it was declared as read-only
|
|
|
| PropertyType type = lookup.type();
|
| @@ -4256,7 +4256,7 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_KeyedGetProperty) {
|
| // appropriate.
|
| LookupResult result(isolate);
|
| receiver->LocalLookup(key, &result);
|
| - if (result.IsProperty() && result.type() == FIELD) {
|
| + if (result.IsFound() && result.type() == FIELD) {
|
| int offset = result.GetFieldIndex();
|
| keyed_lookup_cache->Update(receiver_map, key, offset);
|
| return receiver->FastPropertyAt(offset);
|
| @@ -4404,7 +4404,7 @@ RUNTIME_FUNCTION(MaybeObject*, Runtime_DefineOrRedefineDataProperty) {
|
| js_object->LocalLookupRealNamedProperty(*name, &result);
|
|
|
| // Special case for callback properties.
|
| - if (result.IsProperty() && result.type() == CALLBACKS) {
|
| + if (result.IsFound() && result.type() == CALLBACKS) {
|
| Object* callback = result.GetCallbackObject();
|
| // To be compatible with Safari we do not change the value on API objects
|
| // in Object.defineProperty(). Firefox disagrees here, and actually changes
|
|
|