(entry, focusSourcePosition = true)
| 286 | } |
| 287 | |
| 288 | focusCodeLogEntry(entry, focusSourcePosition = true) { |
| 289 | this._state.code = entry; |
| 290 | this._view.codePanel.entry = entry; |
| 291 | if (focusSourcePosition) this.focusSourcePosition(entry.sourcePosition); |
| 292 | this._view.codePanel.show(); |
| 293 | } |
| 294 | |
| 295 | focusDeoptLogEntry(entry) { |
| 296 | this._state.deoptLogEntry = entry; |
no test coverage detected