Searched refs:posOfNode (Results 1 – 3 of 3) sorted by relevance
116 const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(pos); constant120 line: posOfNode.line + 1,121 column: posOfNode.character + 1,144 const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(item.pos); constant145 item.line = posOfNode.line + 1;146 item.column = posOfNode.character + 1;
370 const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(node.getStart()); constant371 const line: number = posOfNode.line + 1;372 const column: number = posOfNode.character + 1;710 …const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(moduleNode.getStar… constant711 const line: number = posOfNode.line + 1;712 const column: number = posOfNode.character + 1;
696 let posOfNode: ts.LineAndCharacter;701 posOfNode = sourceNode.getLineAndCharacterOfPosition(getRealNodePos(node) - 22);703 if (posOfNode.line === 0) {708 posOfNode = transformLog.sourceFile.getLineAndCharacterOfPosition(getRealNodePos(node));714 `(${posOfNode.line + line}:${posOfNode.character + col})`;717 `(${posOfNode.line + line}:${posOfNode.character + col})`;2100 const posOfNode: ts.LineAndCharacter = transformLog.sourceFile constant2105 const rLine: number = posOfNode.line + 1;2106 const rCol: number = posOfNode.character + 1;