Searched refs:insertNodeAt (Results 1 – 4 of 4) sorted by relevance
/third_party/typescript/src/services/ |
D | textChanges.ts | 413 …public insertNodeAt(sourceFile: SourceFile, pos: number, newNode: Node, options: InsertNodeOptions… method in ts.textChanges.ChangeTracker 439 this.insertNodeAt(sourceFile, pos, insert, options); 449 this.insertNodeAt(sourceFile, parameters.pos, newParam); 454 …this.insertNodeAt(sourceFile, getAdjustedStartPosition(sourceFile, before, options), newNode, this… 458 this.insertNodeAt(sourceFile, pos, factory.createToken(modifier), options); 491 this.insertNodeAt(sourceFile, fnStart, tag, { suffix: this.newLineCharacter + indent }); 543 this.insertNodeAt(sourceFile, endNode.end, type, { prefix: ": " }); 551 this.insertNodeAt(sourceFile, start, type, { prefix: "this: ", suffix }); 615 this.insertNodeAt(sourceFile, pos, newNode, { 631 …this.insertNodeAt(sourceFile, getMembersOrProperties(node).pos, newElement, this.getInsertNodeAtSt… [all …]
|
/third_party/typescript/src/services/refactors/ |
D | inferFunctionReturnType.ts | 66 changes.insertNodeAt(sourceFile, endNode.end, typeNode, { prefix: ": " });
|
/third_party/typescript/src/services/codefixes/ |
D | inferFromUsage.ts | 371 … changes.insertNodeAt(sourceFile, param.getStart(sourceFile), jsDoc, { suffix: " " });
|
D | importFixes.ts | 1171 …changes.insertNodeAt(sourceFile, clause.getStart(sourceFile), factory.createIdentifier(defaultImpo…
|