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

Unified Diff: src/builtins.cc

Issue 214051: Pushed 1.3.12 to trunk. (Closed) Base URL: http://v8.googlecode.com/svn/trunk/
Patch Set: Created 11 years, 3 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/builtins.h ('k') | src/handles.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins.cc
===================================================================
--- src/builtins.cc (revision 2947)
+++ src/builtins.cc (working copy)
@@ -135,7 +135,9 @@
BUILTIN_END
-BUILTIN(ArrayCode) {
+BUILTIN(ArrayCodeGeneric) {
+ Counters::array_function_runtime.Increment();
+
JSArray* array;
if (CalledAsConstructor()) {
array = JSArray::cast(*receiver);
@@ -166,7 +168,7 @@
// Take the argument as the length.
obj = array->Initialize(0);
if (obj->IsFailure()) return obj;
- if (args.length() == 2) return array->SetElementsLength(args[1]);
+ return array->SetElementsLength(args[1]);
}
// Optimize the case where there are no parameters passed.
« no previous file with comments | « src/builtins.h ('k') | src/handles.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698