TypeScript/tests/baselines/reference/exportStarForValues2.symbols
2016-03-16 13:45:55 -07:00

17 lines
384 B
Plaintext

=== tests/cases/compiler/file1.ts ===
export interface Foo { x }
>Foo : Symbol(Foo, Decl(file1.ts, 0, 0))
>x : Symbol(Foo.x, Decl(file1.ts, 1, 22))
=== tests/cases/compiler/file2.ts ===
export * from "file1"
var x = 1;
>x : Symbol(x, Decl(file2.ts, 1, 3))
=== tests/cases/compiler/file3.ts ===
export * from "file2"
var x = 1;
>x : Symbol(x, Decl(file3.ts, 1, 3))