(entry, focusSourcePosition = true)
| 268 | } |
| 269 | |
| 270 | focusMapLogEntry(entry, focusSourcePosition = true) { |
| 271 | this._state.map = entry; |
| 272 | this._view.mapTrack.focusedEntry = entry; |
| 273 | this._view.mapPanel.map = entry; |
| 274 | if (focusSourcePosition) { |
| 275 | this.focusCodeLogEntry(entry.code, false); |
| 276 | this.focusSourcePosition(entry.sourcePosition); |
| 277 | } |
| 278 | this._view.mapPanel.show(); |
| 279 | } |
| 280 | |
| 281 | focusIcLogEntry(entry) { |
| 282 | this._state.ic = entry; |
no test coverage detected