TypeScript/tests/baselines/reference/library_ArraySlice.types
2015-04-15 16:44:20 -07:00

30 lines
917 B
Plaintext

=== tests/cases/compiler/library_ArraySlice.ts ===
// Array.prototype.slice can have zero, one, or two arguments
Array.prototype.slice();
>Array.prototype.slice() : any[]
>Array.prototype.slice : (start?: number, end?: number) => any[]
>Array.prototype : any[]
>Array : ArrayConstructor
>prototype : any[]
>slice : (start?: number, end?: number) => any[]
Array.prototype.slice(0);
>Array.prototype.slice(0) : any[]
>Array.prototype.slice : (start?: number, end?: number) => any[]
>Array.prototype : any[]
>Array : ArrayConstructor
>prototype : any[]
>slice : (start?: number, end?: number) => any[]
>0 : number
Array.prototype.slice(0, 1);
>Array.prototype.slice(0, 1) : any[]
>Array.prototype.slice : (start?: number, end?: number) => any[]
>Array.prototype : any[]
>Array : ArrayConstructor
>prototype : any[]
>slice : (start?: number, end?: number) => any[]
>0 : number
>1 : number