Skip to content

Commit 5a0a671

Browse files
TypeScript BotRyanCavanaugh
TypeScript Bot
authored andcommitted
Cherry-pick PR #32898 into release-3.6 (#32900)
Component commits: 7f6543c Fix export=global auto import exclusion
1 parent 0652f34 commit 5a0a671

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

src/services/completions.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1289,7 +1289,7 @@ namespace ts.Completions {
12891289
if (resolvedModuleSymbol !== moduleSymbol &&
12901290
// Don't add another completion for `export =` of a symbol that's already global.
12911291
// So in `declare namespace foo {} declare module "foo" { export = foo; }`, there will just be the global completion for `foo`.
1292-
some(resolvedModuleSymbol.declarations, d => !!d.getSourceFile().externalModuleIndicator)) {
1292+
every(resolvedModuleSymbol.declarations, d => !!d.getSourceFile().externalModuleIndicator)) {
12931293
symbols.push(resolvedModuleSymbol);
12941294
symbolToSortTextMap[getSymbolId(resolvedModuleSymbol)] = SortText.AutoImportSuggestions;
12951295
symbolToOriginInfoMap[getSymbolId(resolvedModuleSymbol)] = { kind: SymbolOriginInfoKind.Export, moduleSymbol, isDefaultExport: false };
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/// <reference path="fourslash.ts" />
2+
3+
// @module: es6
4+
5+
// @Filename: /console.d.ts
6+
////interface Console {}
7+
////declare var console: Console;
8+
////declare module "console" {
9+
//// export = console;
10+
////}
11+
12+
// @Filename: /react-native.d.ts
13+
//// import 'console';
14+
////declare global {
15+
//// interface Console {}
16+
//// var console: Console;
17+
////}
18+
19+
// @Filename: /a.ts
20+
////conso/**/
21+
22+
verify.completions({
23+
exact: completion.globalsPlus([{
24+
hasAction: undefined, // asserts that it does *not* have an action
25+
name: "console"
26+
}]),
27+
preferences: {
28+
includeCompletionsForModuleExports: true,
29+
includeInsertTextCompletions: true
30+
}
31+
});

0 commit comments

Comments
 (0)