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

Side by Side Diff: src/array.js

Issue 1132513003: Call builtin code wrapped in functions from the bootstrapper. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix extra natives Created 5 years, 7 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/array-iterator.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 var $arrayConcat; 5 var $arrayConcat;
6 var $arrayJoin; 6 var $arrayJoin;
7 var $arrayPush; 7 var $arrayPush;
8 var $arrayPop; 8 var $arrayPop;
9 var $arrayShift; 9 var $arrayShift;
10 var $arraySlice; 10 var $arraySlice;
11 var $arraySplice; 11 var $arraySplice;
12 var $arrayUnshift; 12 var $arrayUnshift;
13 13
14 (function() { 14 (function(global, shared, exports) {
15 15
16 "use strict"; 16 "use strict";
17 17
18 %CheckIsBootstrapping(); 18 %CheckIsBootstrapping();
19 19
20 var GlobalArray = global.Array; 20 var GlobalArray = global.Array;
21 21
22 // ------------------------------------------------------------------- 22 // -------------------------------------------------------------------
23 23
24 // Global list of arrays visited during toString, toLocaleString and 24 // Global list of arrays visited during toString, toLocaleString and
(...skipping 1563 matching lines...) Expand 10 before | Expand all | Expand 10 after
1588 1588
1589 $arrayConcat = ArrayConcatJS; 1589 $arrayConcat = ArrayConcatJS;
1590 $arrayJoin = ArrayJoin; 1590 $arrayJoin = ArrayJoin;
1591 $arrayPush = ArrayPush; 1591 $arrayPush = ArrayPush;
1592 $arrayPop = ArrayPop; 1592 $arrayPop = ArrayPop;
1593 $arrayShift = ArrayShift; 1593 $arrayShift = ArrayShift;
1594 $arraySlice = ArraySlice; 1594 $arraySlice = ArraySlice;
1595 $arraySplice = ArraySplice; 1595 $arraySplice = ArraySplice;
1596 $arrayUnshift = ArrayUnshift; 1596 $arrayUnshift = ArrayUnshift;
1597 1597
1598 })(); 1598 })
OLDNEW
« no previous file with comments | « no previous file | src/array-iterator.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698