mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 08:11:30 -06:00
Add analogous export test.
This commit is contained in:
parent
e5b8f87927
commit
55b39d45f6
16
tests/cases/fourslash/completionListInExportClause03.ts
Normal file
16
tests/cases/fourslash/completionListInExportClause03.ts
Normal file
@ -0,0 +1,16 @@
|
||||
/// <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();
|
||||
Loading…
x
Reference in New Issue
Block a user