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

10 lines
215 B
Plaintext

=== tests/cases/compiler/file1.d.ts ===
declare function foo(): void;
>foo : Symbol(foo, Decl(file1.d.ts, 0, 0))
=== tests/cases/compiler/file1.ts ===
export var x;
>x : Symbol(x, Decl(file1.ts, 0, 10))