mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-15 12:51:30 -05:00
Merge pull request #20233 from amcasey/BlockCompletions
Offer global completions in all blocks
This commit is contained in:
@@ -942,6 +942,7 @@ namespace ts.Completions {
|
||||
scopeNode.kind === SyntaxKind.SourceFile ||
|
||||
scopeNode.kind === SyntaxKind.TemplateExpression ||
|
||||
scopeNode.kind === SyntaxKind.JsxExpression ||
|
||||
scopeNode.kind === SyntaxKind.Block || // Some blocks aren't statements, but all get global completions
|
||||
isStatement(scopeNode);
|
||||
}
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@ verify.completionListIsGlobal(true);
|
||||
goTo.marker("6");
|
||||
verify.completionListIsGlobal(false);
|
||||
goTo.marker("7");
|
||||
verify.completionListIsGlobal(false);
|
||||
verify.completionListIsGlobal(true);
|
||||
goTo.marker("8");
|
||||
verify.completionListIsGlobal(false);
|
||||
goTo.marker("9");
|
||||
|
||||
Reference in New Issue
Block a user