Home
last modified time | relevance | path

Searched refs:posOfNode (Results 1 – 3 of 3) sorted by relevance

/developtools/ace_ets2bundle/compiler/src/
Dutils.ts116 const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(pos); constant
120 line: posOfNode.line + 1,
121 column: posOfNode.character + 1,
144 const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(item.pos); constant
145 item.line = posOfNode.line + 1;
146 item.column = posOfNode.character + 1;
Dprocess_import.ts370 const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(node.getStart()); constant
371 const line: number = posOfNode.line + 1;
372 const column: number = posOfNode.character + 1;
710 …const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(moduleNode.getStar… constant
711 const line: number = posOfNode.line + 1;
712 const column: number = posOfNode.character + 1;
Dprocess_component_build.ts696 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 constant
2105 const rLine: number = posOfNode.line + 1;
2106 const rCol: number = posOfNode.character + 1;