TypeScript/tests/baselines/reference/funClodule.symbols
Nathan Shively-Sanders de4a69cb72
In source files and blocks, bind function declarations before other statements (#22766)
* Add test case and temporarily disable inference

(Inference of class members from this-assignments inside a
prototype-assigned function.)

* Update baselines

* In blocks and source files, bind functions first

* Add tests from other bugs

* Remove temporary failsafe

* Update tests to restore intent and clean up errors

* Restore intent even better

* Restore intent even better x2

* Add missed baselines
2018-03-21 14:22:09 -07:00

40 lines
1.1 KiB
Plaintext

=== tests/cases/compiler/funClodule.ts ===
declare function foo();
>foo : Symbol(foo, Decl(funClodule.ts, 0, 0), Decl(funClodule.ts, 0, 23))
declare module foo {
>foo : Symbol(foo, Decl(funClodule.ts, 0, 0), Decl(funClodule.ts, 0, 23))
export function x(): any;
>x : Symbol(x, Decl(funClodule.ts, 1, 20))
}
declare class foo { } // Should error
>foo : Symbol(foo, Decl(funClodule.ts, 3, 1))
declare class foo2 { }
>foo2 : Symbol(foo2, Decl(funClodule.ts, 4, 21))
declare module foo2 {
>foo2 : Symbol(foo2, Decl(funClodule.ts, 10, 1), Decl(funClodule.ts, 7, 22))
export function x(): any;
>x : Symbol(x, Decl(funClodule.ts, 8, 21))
}
declare function foo2(); // Should error
>foo2 : Symbol(foo2, Decl(funClodule.ts, 10, 1), Decl(funClodule.ts, 7, 22))
function foo3() { }
>foo3 : Symbol(foo3, Decl(funClodule.ts, 11, 24), Decl(funClodule.ts, 14, 19))
module foo3 {
>foo3 : Symbol(foo3, Decl(funClodule.ts, 11, 24), Decl(funClodule.ts, 14, 19))
export function x(): any { }
>x : Symbol(x, Decl(funClodule.ts, 15, 13))
}
class foo3 { } // Should error
>foo3 : Symbol(foo3, Decl(funClodule.ts, 17, 1))