(codeOffset)
| 1658 | } |
| 1659 | |
| 1660 | getScriptOffset(codeOffset) { |
| 1661 | console.assert(codeOffset >= 0); |
| 1662 | for (let i = this.offsetTable.length - 2; i >= 0; i -= 2) { |
| 1663 | if (this.offsetTable[i] <= codeOffset) { |
| 1664 | return this.offsetTable[i + 1]; |
| 1665 | } |
| 1666 | } |
| 1667 | return this.offsetTable[1]; |
| 1668 | } |
| 1669 | } |
| 1670 | |
| 1671 | class HelpView { |
no test coverage detected