Index: src/objects-inl.h |
diff --git a/src/objects-inl.h b/src/objects-inl.h |
index 461578ba85c875bc75dc2be10d7ce8164cc079be..5d7343f093d26b264031698f108558681d44f07e 100644 |
--- a/src/objects-inl.h |
+++ b/src/objects-inl.h |
@@ -1092,22 +1092,6 @@ MaybeHandle<Object> Object::GetElement(Isolate* isolate, |
} |
-Handle<Object> Object::GetElementNoExceptionThrown(Isolate* isolate, |
- Handle<Object> object, |
- uint32_t index) { |
- Handle<Object> result = |
- Object::GetElementWithReceiver( |
- isolate, object, object, index).ToHandleChecked(); |
- return result; |
-} |
- |
- |
-MaybeObject* Object::GetProperty(Name* key) { |
- PropertyAttributes attributes; |
- return GetPropertyWithReceiver(this, key, &attributes); |
-} |
- |
- |
#define FIELD_ADDR(p, offset) \ |
(reinterpret_cast<byte*>(p) + offset - kHeapObjectTag) |
@@ -3024,15 +3008,6 @@ void Name::set_hash_field(uint32_t value) { |
} |
-Handle<Object> GlobalObject::GetPropertyNoExceptionThrown( |
- Handle<GlobalObject> global, |
- Handle<Name> name) { |
- Handle<Object> result = Object::GetProperty(global, name); |
- CHECK_NOT_EMPTY_HANDLE(name->GetIsolate(), result); |
- return result; |
-} |
- |
- |
bool Name::Equals(Name* other) { |
if (other == this) return true; |
if ((this->IsInternalizedString() && other->IsInternalizedString()) || |