Searched refs:getTrailingCommentRanges (Results 1 – 16 of 16) sorted by relevance
/third_party/typescript/src/services/refactors/ |
D | convertStringOrTemplateLiteral.ts | 68 const trailingCommentRanges = getTrailingCommentRanges(file.text, maybeBinary.end);
|
/third_party/typescript/src/services/ |
D | smartSelection.ts | 21 … const comment = singleOrUndefined(getTrailingCommentRanges(sourceFile.text, node.end));
|
D | textChanges.ts | 205 …t = getLeadingCommentRanges(sourceFile.text, fullStart)?.[0] || getTrailingCommentRanges(sourceFil… 227 const comments = getTrailingCommentRanges(sourceFile.text, end); 258 …const comments = concatenate(getTrailingCommentRanges(sourceFile.text, end), getLeadingCommentRang…
|
/third_party/typescript/src/compiler/transformers/ |
D | declarations.ts | 25 …getTrailingCommentRanges(text, skipTrivia(text, previousSibling.end + 1, /* stopAfterLineBreak */ … 28 …: getTrailingCommentRanges(text, skipTrivia(text, node.pos, /* stopAfterLineBreak */ false, /* sto…
|
/third_party/typescript/src/services/formatting/ |
D | formatting.ts | 1314 …const trailingRangesOfPreviousToken = precedingToken && getTrailingCommentRanges(sourceFile.text, …
|
/third_party/typescript/src/linter/ArkTSLinter_1_0/ |
D | TypeScriptLinter.ts | 1817 const trailingComments = getTrailingCommentRanges(srcText, node.getEnd());
|
/third_party/typescript/src/compiler/ |
D | scanner.ts | 891 … export function getTrailingCommentRanges(text: string, pos: number): CommentRange[] | undefined { function
|
D | emitter.ts | 3082 …if (some(getTrailingCommentRanges(currentSourceFile.text, node.expression.pos), commentWillEmitNew…
|
D | utilities.ts | 1329 … concatenate(getTrailingCommentRanges(text, node.pos), getLeadingCommentRanges(text, node.pos)) :
|
/third_party/typescript/lib/ |
D | typescript.d.ts | 4600 function getTrailingCommentRanges(text: string, pos: number): CommentRange[] | undefined;
|
D | typescriptServices.d.ts | 4600 function getTrailingCommentRanges(text: string, pos: number): CommentRange[] | undefined;
|
D | tsserverlibrary.d.ts | 4600 function getTrailingCommentRanges(text: string, pos: number): CommentRange[] | undefined;
|
D | typingsInstaller.js | 10865 function getTrailingCommentRanges(text, pos) { function 10868 ts.getTrailingCommentRanges = getTrailingCommentRanges; 15790 …ts.concatenate(ts.getTrailingCommentRanges(text, node.pos), ts.getLeadingCommentRanges(text, node.… 112803 …ts.getTrailingCommentRanges(text, ts.skipTrivia(text, previousSibling.end + 1, /* stopAfterLineBre… 112804 …: ts.getTrailingCommentRanges(text, ts.skipTrivia(text, node.pos, /* stopAfterLineBreak */ false, … 117468 …if (ts.some(ts.getTrailingCommentRanges(currentSourceFile.text, node.expression.pos), commentWillE…
|
D | tsc.js | 7877 function getTrailingCommentRanges(text, pos) { function 7880 ts.getTrailingCommentRanges = getTrailingCommentRanges; 12203 …ts.concatenate(ts.getTrailingCommentRanges(text, node.pos), ts.getLeadingCommentRanges(text, node.… 92946 …? ts.concatenate(ts.getTrailingCommentRanges(text, ts.skipTrivia(text, previousSibling.end + 1, fa… 92947 : ts.getTrailingCommentRanges(text, ts.skipTrivia(text, node.pos, false, true)); 97187 …if (ts.some(ts.getTrailingCommentRanges(currentSourceFile.text, node.expression.pos), commentWillE…
|
/third_party/typescript/tests/baselines/reference/api/ |
D | typescript.d.ts | 4600 function getTrailingCommentRanges(text: string, pos: number): CommentRange[] | undefined;
|
D | tsserverlibrary.d.ts | 4600 function getTrailingCommentRanges(text: string, pos: number): CommentRange[] | undefined;
|