Home
last modified time | relevance | path

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

/third_party/typescript/src/services/formatting/
DsmartIndenter.ts38 …const enclosingCommentRange = getRangeOfEnclosingComment(sourceFile, position, precedingToken || n… constant
39 … if (enclosingCommentRange && enclosingCommentRange.kind === SyntaxKind.MultiLineCommentTrivia) {
40 return getCommentIndent(sourceFile, position, options, enclosingCommentRange);
103 …ourceFile: SourceFile, position: number, options: EditorSettings, enclosingCommentRange: CommentRa…
105 …const commentStartLine = getLineAndCharacterOfPosition(sourceFile, enclosingCommentRange.pos).line;