TypeScript/tests/cases/fourslash/completionListInExportClause03.ts
2015-07-10 17:33:56 -07:00

16 lines
412 B
TypeScript

/// <reference path="fourslash.ts" />
////declare module "M1" {
//// export var abc: number;
//// export var def: string;
////}
////
////declare module "M2" {
//// export { abc/**/ } from "M1";
////}
// Ensure we don't filter out the current item.
goTo.marker();
verify.completionListContains("abc");
verify.completionListContains("def");
verify.not.completionListAllowsNewIdentifier();