(start, end, focus = false, zoom = false)
| 227 | } |
| 228 | |
| 229 | selectTimeRange(start, end, focus = false, zoom = false) { |
| 230 | this._state.selectTimeRange(start, end); |
| 231 | this.showMapEntries(this._state.mapTimeline.selectionOrSelf, false); |
| 232 | this.showIcEntries(this._state.icTimeline.selectionOrSelf, false); |
| 233 | this.showDeoptEntries(this._state.deoptTimeline.selectionOrSelf, false); |
| 234 | this.showCodeEntries(this._state.codeTimeline.selectionOrSelf, false); |
| 235 | this.showTickEntries(this._state.tickTimeline.selectionOrSelf, false); |
| 236 | this.showTimerEntries(this._state.timerTimeline.selectionOrSelf, false); |
| 237 | this._view.timelinePanel.timeSelection = {start, end, focus, zoom}; |
| 238 | } |
| 239 | |
| 240 | handleFocusLogEntry(e) { |
| 241 | e.stopImmediatePropagation(); |
no test coverage detected