Searched refs:posOfNode (Results 1 – 4 of 4) sorted by relevance
125 const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(pos); constant129 line: posOfNode.line + 1,130 column: posOfNode.character + 1,153 const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(item.pos); constant154 item.line = posOfNode.line + 1;155 item.column = posOfNode.character + 1;
965 let posOfNode: ts.LineAndCharacter;970 posOfNode = sourceNode.getLineAndCharacterOfPosition(getRealNodePos(node) - 22);972 if (posOfNode.line === 0) {977 posOfNode = transformLog.sourceFile.getLineAndCharacterOfPosition(getRealNodePos(node));984 `(${posOfNode.line + line}:${posOfNode.character + col})`;987 `(${posOfNode.line + line}:${posOfNode.character + col})`;991 `(${posOfNode.line + line}:${posOfNode.character + col})`;2605 const posOfNode: ts.LineAndCharacter = transformLog.sourceFile constant2610 const rLine: number = posOfNode.line + 1;2611 const rCol: number = posOfNode.character + 1;
834 const posOfNode = transformLog.sourceFile.getLineAndCharacterOfPosition(getRealNodePos(node)); constant835 const line: number = posOfNode.line + 1;836 const col: number = posOfNode.character + 1;
730 …const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(moduleNode.getStar… constant731 const line: number = posOfNode.line + 1;732 const column: number = posOfNode.character + 1;