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

Side by Side Diff: src/js/harmony-typedarray.js

Issue 1424703005: Remove JSBuiltinsObject. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 1 month 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
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 (function(global, utils) { 5 (function(global, utils) {
6 6
7 "use strict"; 7 "use strict";
8 8
9 %CheckIsBootstrapping(); 9 %CheckIsBootstrapping();
10 10
(...skipping 26 matching lines...) Expand all
37 var InnerArrayEvery; 37 var InnerArrayEvery;
38 var InnerArrayFill; 38 var InnerArrayFill;
39 var InnerArrayFilter; 39 var InnerArrayFilter;
40 var InnerArrayFind; 40 var InnerArrayFind;
41 var InnerArrayFindIndex; 41 var InnerArrayFindIndex;
42 var InnerArrayForEach; 42 var InnerArrayForEach;
43 var InnerArrayIndexOf; 43 var InnerArrayIndexOf;
44 var InnerArrayJoin; 44 var InnerArrayJoin;
45 var InnerArrayLastIndexOf; 45 var InnerArrayLastIndexOf;
46 var InnerArrayMap; 46 var InnerArrayMap;
47 var InnerArrayReduce;
48 var InnerArrayReduceRight;
47 var InnerArraySome; 49 var InnerArraySome;
48 var InnerArraySort; 50 var InnerArraySort;
49 var InnerArrayToLocaleString; 51 var InnerArrayToLocaleString;
50 var IsNaN; 52 var IsNaN;
51 var MakeTypeError; 53 var MakeTypeError;
52 var MaxSimple; 54 var MaxSimple;
53 var MinSimple; 55 var MinSimple;
54 var PackedArrayReverse; 56 var PackedArrayReverse;
55 57
56 utils.Import(function(from) { 58 utils.Import(function(from) {
(...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 "some", TypedArraySome, 407 "some", TypedArraySome,
406 "sort", TypedArraySort, 408 "sort", TypedArraySort,
407 "toString", TypedArrayToString, 409 "toString", TypedArrayToString,
408 "toLocaleString", TypedArrayToLocaleString 410 "toLocaleString", TypedArrayToLocaleString
409 ]); 411 ]);
410 endmacro 412 endmacro
411 413
412 TYPED_ARRAYS(EXTEND_TYPED_ARRAY) 414 TYPED_ARRAYS(EXTEND_TYPED_ARRAY)
413 415
414 }) 416 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698