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

15 lines
361 B
Plaintext

=== tests/cases/compiler/noSelfOnVars.ts ===
function foo() {
>foo : () => void, Symbol(foo, Decl(noSelfOnVars.ts, 0, 0))
function bar() { }
>bar : () => void, Symbol(bar, Decl(noSelfOnVars.ts, 0, 16))
var x = bar;
>x : () => void, Symbol(x, Decl(noSelfOnVars.ts, 2, 7))
>bar : () => void, Symbol(bar, Decl(noSelfOnVars.ts, 0, 16))
}