| OLD | NEW |
| 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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 "copyWithin", TypedArrayCopyWithin, | 391 "copyWithin", TypedArrayCopyWithin, |
| 392 "every", TypedArrayEvery, | 392 "every", TypedArrayEvery, |
| 393 "fill", TypedArrayFill, | 393 "fill", TypedArrayFill, |
| 394 "filter", TypedArrayFilter, | 394 "filter", TypedArrayFilter, |
| 395 "find", TypedArrayFind, | 395 "find", TypedArrayFind, |
| 396 "findIndex", TypedArrayFindIndex, | 396 "findIndex", TypedArrayFindIndex, |
| 397 "indexOf", TypedArrayIndexOf, | 397 "indexOf", TypedArrayIndexOf, |
| 398 "join", TypedArrayJoin, | 398 "join", TypedArrayJoin, |
| 399 "lastIndexOf", TypedArrayLastIndexOf, | 399 "lastIndexOf", TypedArrayLastIndexOf, |
| 400 "forEach", TypedArrayForEach, | 400 "forEach", TypedArrayForEach, |
| 401 "map", TypedArrayMap, | 401 // BUG(chromium:524392): Ship TypedArray.map once it doesn't break the web |
| 402 // "map", TypedArrayMap, |
| 402 "reduce", TypedArrayReduce, | 403 "reduce", TypedArrayReduce, |
| 403 "reduceRight", TypedArrayReduceRight, | 404 "reduceRight", TypedArrayReduceRight, |
| 404 "reverse", TypedArrayReverse, | 405 "reverse", TypedArrayReverse, |
| 405 "slice", TypedArraySlice, | 406 "slice", TypedArraySlice, |
| 406 "some", TypedArraySome, | 407 "some", TypedArraySome, |
| 407 "sort", TypedArraySort, | 408 "sort", TypedArraySort, |
| 408 "toString", TypedArrayToString, | 409 "toString", TypedArrayToString, |
| 409 "toLocaleString", TypedArrayToLocaleString | 410 "toLocaleString", TypedArrayToLocaleString |
| 410 ]); | 411 ]); |
| 411 endmacro | 412 endmacro |
| 412 | 413 |
| 413 TYPED_ARRAYS(EXTEND_TYPED_ARRAY) | 414 TYPED_ARRAYS(EXTEND_TYPED_ARRAY) |
| 414 | 415 |
| 415 }) | 416 }) |
| OLD | NEW |