TypeScript/tests/baselines/reference/umd4.symbols
Yui 2627e6f3fc [Transforms] Merge master on 08/05 (#10182)
* Fix #10083 - allowSyntheticDefaultImports alters getExternalModuleMember (#10096)

* Add a helper function `getOrUpdateProperty` to prevent unprotected access to Maps.

* Limit type guards as assertions to incomplete types in loops

* Accept new baselines

* Fix linting error

* [Release-2.0] Fix 9662: Visual Studio 2015 with TS2.0 gives incorrect @types path resolution errors (#9867)

* Change the shape of the shim layer to support getAutomaticTypeDirectives

* Change the key for looking up automatic type-directives

* Update baselines from change look-up name of type-directives

* Add @currentDirectory into the test

* Update baselines

* Fix linting error

* Address PR: fix spelling mistake

* Instead of return path of the type directive names just return type directive names

* Remove unused reference files: these tests produce erros so they will not produce these files (#9233)

* Don't allow properties inherited from Object to be automatically included in TSX attributes

* Port PR #10016 to Master (#10100)

* Treat namespaceExportDeclaration as declaration

* Update baselines

* wip - add tests

* Add tests

* Show "export namespace" for quick-info

* Update baselines from merging
2016-08-05 21:45:13 -07:00

37 lines
1 KiB
Plaintext

=== tests/cases/conformance/externalModules/a.ts ===
import * as Bar from './foo';
>Bar : Symbol(Bar, Decl(a.ts, 0, 6))
Bar.fn();
>Bar.fn : Symbol(Bar.fn, Decl(foo.d.ts, 1, 21))
>Bar : Symbol(Bar, Decl(a.ts, 0, 6))
>fn : Symbol(Bar.fn, Decl(foo.d.ts, 1, 21))
let x: Bar.Thing;
>x : Symbol(x, Decl(a.ts, 2, 3))
>Bar : Symbol(Bar, Decl(a.ts, 0, 6))
>Thing : Symbol(Bar.Thing, Decl(foo.d.ts, 2, 27))
let y: number = x.n;
>y : Symbol(y, Decl(a.ts, 3, 3))
>x.n : Symbol(Bar.Thing.n, Decl(foo.d.ts, 3, 24))
>x : Symbol(x, Decl(a.ts, 2, 3))
>n : Symbol(Bar.Thing.n, Decl(foo.d.ts, 3, 24))
=== tests/cases/conformance/externalModules/foo.d.ts ===
export var x: number;
>x : Symbol(x, Decl(foo.d.ts, 1, 10))
export function fn(): void;
>fn : Symbol(fn, Decl(foo.d.ts, 1, 21))
export interface Thing { n: typeof x }
>Thing : Symbol(Thing, Decl(foo.d.ts, 2, 27))
>n : Symbol(Thing.n, Decl(foo.d.ts, 3, 24))
>x : Symbol(x, Decl(foo.d.ts, 1, 10))
export as namespace Foo;
>Foo : Symbol(Foo, Decl(foo.d.ts, 3, 38))