TypeScript/tests/baselines/reference/propertyAccess7.types

11 lines
408 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/propertyAccess7.ts ===
var foo: string;
2015-04-13 23:01:57 +02:00
>foo : string, Symbol(foo, Decl(propertyAccess7.ts, 0, 3))
2014-08-15 23:33:16 +02:00
foo.toUpperCase();
>foo.toUpperCase() : string
2015-04-13 23:01:57 +02:00
>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))
2014-08-15 23:33:16 +02:00