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

Unified Diff: src/heap.cc

Issue 8199004: Reimplement Function.prototype.bind. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Reading length of function proxies as property of proxy. Created 9 years, 2 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/heap.cc
diff --git a/src/heap.cc b/src/heap.cc
index 2a21aa88ca1f0afb78758cfe8621fc8341401172..3dde96d7c066c50979e1b4d03b78c7a5af4ee301 100644
--- a/src/heap.cc
+++ b/src/heap.cc
@@ -3269,7 +3269,7 @@ void Heap::InitializeFunction(JSFunction* function,
function->set_code(shared->code());
function->set_prototype_or_initial_map(prototype);
function->set_context(undefined_value());
- function->set_literals(empty_fixed_array());
+ function->set_literals_or_bindings(empty_fixed_array());
function->set_next_function_link(undefined_value());
}
« no previous file with comments | « src/factory.cc ('k') | src/ia32/code-stubs-ia32.cc » ('j') | test/mjsunit/function-bind.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698