Searched refs:ArrayLike (Results 1 - 5 of 5) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
H A D | typedArrays.js | 62 function CreateIntegerTypedArraysFromArrayLike(obj:ArrayLike<number>) { 107 function CreateTypedArraysFromMapFn2<T>(obj:ArrayLike<T>, mapFn: (n:T, v:number)=> number) { 122 function CreateTypedArraysFromMapFn(obj:ArrayLike<number>, mapFn: (n:number, v:number)=> number) { 137 function CreateTypedArraysFromThisObj(obj:ArrayLike<number>, mapFn: (n:number, v:number)=> number, thisArg: {}) { 152 function CreateTypedArraysFromThisObj2<T>(obj:ArrayLike<T>, mapFn: (n:T, v:number)=> number, thisArg: {}) {
|
H A D | arrayFrom.js | 15 const inputALike: ArrayLike<A> = { length: 0 }; 32 // the ?: as always taking the false branch, narrowing to ArrayLike<T>, 33 // even when the type is written as : Iterable<T>|ArrayLike<T> 34 function getEither<T> (in1: Iterable<T>, in2: ArrayLike<T>) { 71 // the ?: as always taking the false branch, narrowing to ArrayLike<T>,
72 // even when the type is written as : Iterable<T>|ArrayLike<T>
|
H A D | functionAssignabilityWithArrayLike01(strict=false).js | 3 const array: ArrayLike<any> = func;
|
H A D | functionAssignabilityWithArrayLike01(strict=true).js | 3 const array: ArrayLike<any> = func;
|
/third_party/jerryscript/tests/jerry/es2015/ |
H A D | array-from.js | 269 function ArrayLike() { throw new TestError() } function 272 Array.from.call(ArrayLike, items);
|
Completed in 3 milliseconds