Searched refs:fullStart (Results 1 – 5 of 5) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
D | moduleMemberWithoutTypeAnnotation1.types | 42 constructor(parent: PositionedElement, token: ISyntaxToken, fullStart: number) { 45 >fullStart : number 97 private findTokenInternal(parent: PositionedElement, position: number, fullStart: number) { 98 >findTokenInternal : (parent: PositionedElement, position: number, fullStart: number) => Positioned… 101 >fullStart : number 103 return new PositionedToken(parent, this, fullStart); 104 >new PositionedToken(parent, this, fullStart) : PositionedToken 108 >fullStart : number
|
D | moduleMemberWithoutTypeAnnotation1.js | 21 constructor(parent: PositionedElement, token: ISyntaxToken, fullStart: number) { 42 private findTokenInternal(parent: PositionedElement, position: number, fullStart: number) { 43 return new PositionedToken(parent, this, fullStart); 77 function PositionedToken(parent, token, fullStart) { argument 107 …WidthTokenWithTrailingTrivia.prototype.findTokenInternal = function (parent, position, fullStart) { argument 108 return new TypeScript.PositionedToken(parent, this, fullStart);
|
D | moduleMemberWithoutTypeAnnotation1.symbols | 45 constructor(parent: PositionedElement, token: ISyntaxToken, fullStart: number) { 50 >fullStart : Symbol(fullStart, Decl(moduleMemberWithoutTypeAnnotation1.ts, 19, 67)) 98 private findTokenInternal(parent: PositionedElement, position: number, fullStart: number) { 103 >fullStart : Symbol(fullStart, Decl(moduleMemberWithoutTypeAnnotation1.ts, 40, 78)) 105 return new PositionedToken(parent, this, fullStart); 109 >fullStart : Symbol(fullStart, Decl(moduleMemberWithoutTypeAnnotation1.ts, 40, 78))
|
/third_party/typescript/tests/cases/compiler/ |
D | moduleMemberWithoutTypeAnnotation1.ts | 20 constructor(parent: PositionedElement, token: ISyntaxToken, fullStart: number) { 41 private findTokenInternal(parent: PositionedElement, position: number, fullStart: number) { 42 return new PositionedToken(parent, this, fullStart);
|
/third_party/typescript/src/services/ |
D | textChanges.ts | 183 const fullStart = node.getFullStart(); constant 185 if (fullStart === start) { 188 const fullStartLine = getLineStartPositionForPosition(fullStart, sourceFile); 198 return leadingTriviaOption === LeadingTriviaOption.IncludeAll ? fullStart : start; 205 …getLeadingCommentRanges(sourceFile.text, fullStart)?.[0] || getTrailingCommentRanges(sourceFile.te… 213 const nextLineStart = fullStart > 0 ? 1 : 0;
|