We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent deff25b commit b91464dCopy full SHA for b91464d
src/services/completions.ts
@@ -4069,7 +4069,7 @@ function getCompletionData(
4069
const start = timestamp();
4070
const result = isInStringOrRegularExpressionOrTemplateLiteral(contextToken) ||
4071
// GH#54729 ignore this case when current position is in a newline
4072
- (isSolelyIdentifierDefinitionLocation(contextToken) && !isInDifferentLineWithContextToken(contextToken, position) ) ||
+ (isSolelyIdentifierDefinitionLocation(contextToken) && !isInDifferentLineWithContextToken(contextToken, position)) ||
4073
isDotOfNumericLiteral(contextToken) ||
4074
isInJsxText(contextToken) ||
4075
isBigIntLiteral(contextToken);
0 commit comments