TypeScript/tests/baselines/reference/propertyAccess6.types

12 lines
260 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/propertyAccess6.ts ===
var foo: any;
2015-04-13 23:01:57 +02:00
>foo : any, Symbol(foo, Decl(propertyAccess6.ts, 0, 3))
2014-08-15 23:33:16 +02:00
foo.bar = 4;
>foo.bar = 4 : number
>foo.bar : any
2015-04-13 23:01:57 +02:00
>foo : any, Symbol(foo, Decl(propertyAccess6.ts, 0, 3))
2014-08-15 23:33:16 +02:00
>bar : any
2015-04-13 21:36:11 +02:00
>4 : number
2014-08-15 23:33:16 +02:00