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

Unified Diff: src/heap.cc

Issue 19384004: Proxies: Make 'with' work, plus minor other fixes (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 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/heap.h ('k') | src/objects.cc » ('j') | src/proxy.js » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index 97c1d416bc718926900007757826318f1997dda3..b8e9bde44d708950589cef75eaa9188476831540 100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -5847,7 +5847,7 @@ MaybeObject* Heap::AllocateCatchContext(JSFunction* function,
MaybeObject* Heap::AllocateWithContext(JSFunction* function,
Context* previous,
- JSObject* extension) {
+ JSReceiver* extension) {
Object* result;
{ MaybeObject* maybe_result = AllocateFixedArray(Context::MIN_CONTEXT_SLOTS);
if (!maybe_result->ToObject(&result)) return maybe_result;
« no previous file with comments | « src/heap.h ('k') | src/objects.cc » ('j') | src/proxy.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698