(sourcePos: number)
| 40 | declare comments: N.Comment[]; |
| 41 | |
| 42 | sourceToOffsetPos(sourcePos: number) { |
| 43 | return sourcePos + this.startIndex; |
| 44 | } |
| 45 | |
| 46 | offsetToSourcePos(offsetPos: number) { |
| 47 | return offsetPos - this.startIndex; |
no outgoing calls
no test coverage detected