Offer global completions in all blocks

This commit is contained in:
Andrew Casey 2017-11-22 14:25:31 -08:00
parent eb5797fd36
commit 643e9fc1e4

View file

@ -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);
}