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

30 lines
950 B
Plaintext

=== tests/cases/compiler/library_StringSlice.ts ===
// String.prototype.slice can have zero, one, or two arguments
String.prototype.slice();
>String.prototype.slice() : string
>String.prototype.slice : (start?: number, end?: number) => string
>String.prototype : String
>String : StringConstructor
>prototype : String
>slice : (start?: number, end?: number) => string
String.prototype.slice(0);
>String.prototype.slice(0) : string
>String.prototype.slice : (start?: number, end?: number) => string
>String.prototype : String
>String : StringConstructor
>prototype : String
>slice : (start?: number, end?: number) => string
>0 : number
String.prototype.slice(0,1);
>String.prototype.slice(0,1) : string
>String.prototype.slice : (start?: number, end?: number) => string
>String.prototype : String
>String : StringConstructor
>prototype : String
>slice : (start?: number, end?: number) => string
>0 : number
>1 : number