Searched refs:nodeToInsertBefore (Results 1 – 1 of 1) sorted by relevance
/third_party/typescript/src/services/refactors/ |
D | extractSymbol.ts | 972 const nodeToInsertBefore = getNodeToInsertFunctionBefore(minInsertionPos, scope); constant 973 if (nodeToInsertBefore) { 974 …changeTracker.insertNodeBefore(context.file, nodeToInsertBefore, newFunction, /*blankLineBetween*/… 1221 const nodeToInsertBefore = getNodeToInsertPropertyBefore(maxInsertionPos, scope); constant 1222 …changeTracker.insertNodeBefore(context.file, nodeToInsertBefore, newVariable, /*blankLineBetween*/… 1258 const nodeToInsertBefore = getNodeToInsertConstantBefore(node, scope); constant 1259 if (nodeToInsertBefore.pos === 0) { 1263 …changeTracker.insertNodeBefore(context.file, nodeToInsertBefore, newVariableStatement, /*blankLine…
|