Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(245)

Unified Diff: src/objects.cc

Issue 236683003: Handlify DebugLookupResultValue. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: fix Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/runtime.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects.cc
diff --git a/src/objects.cc b/src/objects.cc
index cadfb506f72868ac16a80a422c8e7e636036c8ea..eb5728a644a58cce91aa4609f2686c77a3d4309b 100644
--- a/src/objects.cc
+++ b/src/objects.cc
@@ -806,8 +806,8 @@ MaybeHandle<Object> Object::GetProperty(Handle<Object> object,
Handle<Object> value;
switch (result->type()) {
case NORMAL: {
- DisallowHeapAllocation no_gc;
- value = handle(result->holder()->GetNormalizedProperty(result), isolate);
+ value = JSObject::GetNormalizedProperty(
+ handle(result->holder(), isolate), result);
break;
}
case FIELD:
« no previous file with comments | « no previous file | src/runtime.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698