TypeScript/tests/cases/fourslash/goToDefinitionImportedNames3.ts

31 lines
632 B
TypeScript
Raw Normal View History

/// <reference path='fourslash.ts' />
// @Filename: e.ts
2017-10-19 00:49:46 +02:00
//// import {M, [|/*classAliasDefinition*/C|], I} from "./d";
//// var c = new [|/*classReference*/C|]();
// @Filename: d.ts
2016-02-13 00:40:47 +01:00
////export * from "./c";
// @Filename: c.ts
2016-02-13 00:40:47 +01:00
////export {Module as M, Class as C, Interface as I} from "./b";
// @Filename: b.ts
2016-02-13 00:40:47 +01:00
////export * from "./a";
// @Filename: a.ts
////export module Module {
////}
////export class /*classDefinition*/Class {
//// private f;
////}
////export interface Interface {
//// x;
////}
2016-08-29 22:34:32 +02:00
verify.goToDefinition(["classReference", "classAliasDefinition"], "classDefinition");