TypeScript/tests/baselines/reference/propertyAccess7.types
2015-04-13 14:29:37 -07:00

11 lines
408 B
Plaintext

=== tests/cases/compiler/propertyAccess7.ts ===
var foo: string;
>foo : string, Symbol(foo, Decl(propertyAccess7.ts, 0, 3))
foo.toUpperCase();
>foo.toUpperCase() : string
>foo.toUpperCase : () => string, Symbol(String.toUpperCase, Decl(lib.d.ts, 405, 32))
>foo : string, Symbol(foo, Decl(propertyAccess7.ts, 0, 3))
>toUpperCase : () => string, Symbol(String.toUpperCase, Decl(lib.d.ts, 405, 32))