(lineMap, pos)
| 18535 | } |
| 18536 | ts.getLineOfLocalPosition = getLineOfLocalPosition; |
| 18537 | function getLineOfLocalPositionFromLineMap(lineMap, pos) { |
| 18538 | return ts.computeLineOfPosition(lineMap, pos); |
| 18539 | } |
| 18540 | ts.getLineOfLocalPositionFromLineMap = getLineOfLocalPositionFromLineMap; |
| 18541 | function getFirstConstructorWithBody(node) { |
| 18542 | return ts.find(node.members, function (member) { return ts.isConstructorDeclaration(member) && nodeIsPresent(member.body); }); |
no outgoing calls
no test coverage detected