TypeScript/tests/baselines/reference/library_StringSlice.types
2016-09-01 14:25:44 -07:00

30 lines
935 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 : 0
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 : 0
>1 : 1