Searched refs:posOfNode (Results 1 – 4 of 4) sorted by relevance
120 const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(pos); constant124 line: posOfNode.line + 1,125 column: posOfNode.character + 1,148 const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(item.pos); constant149 item.line = posOfNode.line + 1;150 item.column = posOfNode.character + 1;
850 let posOfNode: ts.LineAndCharacter;855 posOfNode = sourceNode.getLineAndCharacterOfPosition(getRealNodePos(node) - 22);857 if (posOfNode.line === 0) {862 posOfNode = transformLog.sourceFile.getLineAndCharacterOfPosition(getRealNodePos(node));869 `(${posOfNode.line + line}:${posOfNode.character + col})`;872 `(${posOfNode.line + line}:${posOfNode.character + col})`;876 `(${posOfNode.line + line}:${posOfNode.character + col})`;2442 const posOfNode: ts.LineAndCharacter = transformLog.sourceFile constant2447 const rLine: number = posOfNode.line + 1;2448 const rCol: number = posOfNode.character + 1;
704 …const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(moduleNode.getStar… constant705 const line: number = posOfNode.line + 1;706 const column: number = posOfNode.character + 1;
823 const posOfNode = transformLog.sourceFile.getLineAndCharacterOfPosition(getRealNodePos(node)); constant824 const line = posOfNode.line + 1;