TypeScript/tests/baselines/reference/wrappedIncovations2.types
2015-04-15 16:44:20 -07:00

21 lines
333 B
Plaintext

=== tests/cases/compiler/wrappedIncovations2.ts ===
var v = this.
>v : any
>this. foo(). bar(). baz() : any
>this. foo(). bar(). baz : any
>this. foo(). bar() : any
>this. foo(). bar : any
>this. foo() : any
>this. foo : any
>this : any
foo().
>foo : any
bar().
>bar : any
baz();
>baz : any