Home
last modified time | relevance | path

Searched refs:isInComment (Results 1 – 6 of 6) sorted by relevance

/third_party/typescript/src/services/
Dservices.ts1782 return !isInComment(sourceFile, position);
2077 if (!isInComment(sourceFile, position)) {
2180 return !isInComment(sourceFile, position);
2297 const commentRange = isInComment(sourceFile, pos + offset);
2328 … if (isInComment(sourceFile, textRange.pos)?.kind !== SyntaxKind.SingleLineCommentTrivia) {
2420 const commentRange = isInComment(sourceFile, i);
2501 if (!isInComment(sourceFile, matchPosition)) {
DoutliningElementsCollector.ts86 if (!result || isInComment(sourceFile, currentLineStart)) {
DsignatureHelp.ts37 …SyntacticOwners && (isInString(sourceFile, position, startingToken) || isInComment(sourceFile, pos…
Dutilities.ts1673 …export function isInComment(sourceFile: SourceFile, position: number, tokenAtPosition?: Node): Com… function
1797 const range = isInComment(sourceFile, position, /*tokenAtPosition*/ undefined);
DtextChanges.ts1422 …return !isInComment(sourceFile, position) && !isInString(sourceFile, position) && !isInTemplateStr…
Dcompletions.ts1944 const insideComment = isInComment(sourceFile, position, currentToken);