TypeScript/tests/baselines/reference/exportAssignDottedName.symbols
Bill Ticehurst 671191a584 Fixed up baselines
(cherry picked from commit f9fb68fbfc)
2016-02-11 14:07:34 -08:00

17 lines
432 B
Plaintext

=== tests/cases/conformance/externalModules/foo2.ts ===
import foo1 = require('./foo1');
>foo1 : Symbol(foo1, Decl(foo2.ts, 0, 0))
export = foo1.x; // Ok
>foo1.x : Symbol(foo1.x, Decl(foo1.ts, 0, 0))
>foo1 : Symbol(foo1, Decl(foo2.ts, 0, 0))
>x : Symbol(foo1.x, Decl(foo1.ts, 0, 0))
=== tests/cases/conformance/externalModules/foo1.ts ===
export function x(){
>x : Symbol(x, Decl(foo1.ts, 0, 0))
return true;
}