TypeScript/tests/baselines/reference/propertyAccess7.types

11 lines
212 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/propertyAccess7.ts ===
var foo: string;
>foo : string
2014-08-15 23:33:16 +02:00
foo.toUpperCase();
>foo.toUpperCase() : string
>foo.toUpperCase : () => string
>foo : string
>toUpperCase : () => string
2014-08-15 23:33:16 +02:00