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

11 lines
212 B
Plaintext

=== tests/cases/compiler/propertyAccess7.ts ===
var foo: string;
>foo : string
foo.toUpperCase();
>foo.toUpperCase() : string
>foo.toUpperCase : () => string
>foo : string
>toUpperCase : () => string