Home
last modified time | relevance | path

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

/developtools/ace_ets2bundle/compiler/src/
Dutils.ts120 const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(pos); constant
124 line: posOfNode.line + 1,
125 column: posOfNode.character + 1,
148 const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(item.pos); constant
149 item.line = posOfNode.line + 1;
150 item.column = posOfNode.character + 1;
Dprocess_component_build.ts850 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 constant
2447 const rLine: number = posOfNode.line + 1;
2448 const rCol: number = posOfNode.character + 1;
Dprocess_import.ts704 …const posOfNode: ts.LineAndCharacter = sourceFile.getLineAndCharacterOfPosition(moduleNode.getStar… constant
705 const line: number = posOfNode.line + 1;
706 const column: number = posOfNode.character + 1;
Dprocess_component_member.ts823 const posOfNode = transformLog.sourceFile.getLineAndCharacterOfPosition(getRealNodePos(node)); constant
824 const line = posOfNode.line + 1;