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

Unified Diff: src/handles.cc

Issue 1327002: Simplify passing of AccessorInfo to interceptors: (Closed)
Patch Set: . Created 10 years, 9 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
Index: src/handles.cc
diff --git a/src/handles.cc b/src/handles.cc
index 4ebeaa79c0639cc90ffc3318872b45aa064301a8..965ef10a9ac9ce5ecc3773e42b5e1f0e0beea501 100644
--- a/src/handles.cc
+++ b/src/handles.cc
@@ -539,7 +539,7 @@ int GetScriptLineNumberSafe(Handle<Script> script, int code_pos) {
void CustomArguments::IterateInstance(ObjectVisitor* v) {
- v->VisitPointers(values_, values_ + 4);
+ v->VisitPointers(values_, values_ + 3);
}

Powered by Google App Engine
This is Rietveld 408576698