Searched refs:commentRanges (Results 1 – 6 of 6) sorted by relevance
/third_party/typescript/src/services/ |
D | stringCompletions.ts | 870 const commentRanges = getLeadingCommentRanges(sourceFile.text, token.pos); constant 871 …const range = commentRanges && find(commentRanges, commentRange => position >= commentRange.pos &&…
|
/third_party/typescript/src/services/formatting/ |
D | formatting.ts | 1316 … const commentRanges = concatenate(trailingRangesOfPreviousToken, leadingCommentRangesOfNextToken); constant 1317 …return commentRanges && find(commentRanges, range => rangeContainsPositionExclusive(range, positio…
|
/third_party/typescript/src/compiler/transformers/ |
D | declarations.ts | 20 const commentRanges = previousSibling constant 29 …return commentRanges && commentRanges.length && hasInternalAnnotation(last(commentRanges), current…
|
/third_party/typescript/src/compiler/ |
D | utilities.ts | 1322 const commentRanges = (node.kind === SyntaxKind.Parameter || constant 1332 return filter(commentRanges, comment =>
|
/third_party/typescript/lib/ |
D | typingsInstaller.js | 15783 var commentRanges = (node.kind === 167 /* SyntaxKind.Parameter */ || 15793 return ts.filter(commentRanges, function (comment) { 112798 var commentRanges = previousSibling 112805 …return commentRanges && commentRanges.length && hasInternalAnnotation(ts.last(commentRanges), curr…
|
D | tsc.js | 12196 var commentRanges = (node.kind === 167 || 12205 return ts.filter(commentRanges, function (comment) { 92945 var commentRanges = previousSibling 92948 …return commentRanges && commentRanges.length && hasInternalAnnotation(ts.last(commentRanges), curr…
|