()
| 136 | } |
| 137 | |
| 138 | clearAllBreakPoints() { |
| 139 | for (let breakpoint of this.breakpoints) { |
| 140 | this.clearBreakPoint(breakpoint); |
| 141 | } |
| 142 | this.breakpoints.clear(); |
| 143 | } |
| 144 | |
| 145 | showBreakPoints(f) { |
| 146 | const source = %FunctionGetSourceCode(f); |
no test coverage detected