TypeScript/tests/baselines/reference/propertyAccess7.types
2014-08-15 14:37:48 -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