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

Unified Diff: src/liveedit.cc

Issue 1221303019: Fix keyed access of primitive objects in the runtime. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 5 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 | « src/liveedit.h ('k') | src/lookup.h » ('j') | src/lookup.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/liveedit.cc
diff --git a/src/liveedit.cc b/src/liveedit.cc
index 150dcb8892892d61ee86e7f0b2528f129f0d3ebd..638fcd03de02cad00f0104065c918bb28aded7fc 100644
--- a/src/liveedit.cc
+++ b/src/liveedit.cc
@@ -28,7 +28,8 @@ void SetElementSloppy(Handle<JSObject> object,
// Ignore return value from SetElement. It can only be a failure if there
// are element setters causing exceptions and the debugger context has none
// of these.
- JSObject::SetElement(object, index, value, SLOPPY).Assert();
+ JSObject::SetElement(object->GetIsolate(), object, index, value, SLOPPY)
+ .Assert();
}
« no previous file with comments | « src/liveedit.h ('k') | src/lookup.h » ('j') | src/lookup.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698