TypeScript/tests/cases/fourslash/selfReferencedExternalModule2.ts
Cyrus Najmabadi eed6f0deca Use an output format for quickinfo that more closely matches the original source.
i.e. use  "var v: string" instead of "(var) v: string".

The parens case should only be used when we're using an english description instead of
an actual language construct.
2015-03-24 00:16:49 -07:00

16 lines
367 B
TypeScript

/// <reference path='fourslash.ts' />
// @Filename: app.ts
////export import A = require('app2');
////export var I = 1;
////A./*1*/Y;
////A.B.A.B./*2*/I;
// @Filename: app2.ts
////export import B = require('app');
////export var Y = 1;
goTo.marker("1");
verify.quickInfoIs("var A.Y: number");
goTo.marker("2");
verify.quickInfoIs("var I: number");