(backstackEntry: BackstackEntry)
| 254 | } |
| 255 | |
| 256 | public _goBackCore(backstackEntry: BackstackEntry) { |
| 257 | super._goBackCore(backstackEntry); |
| 258 | navDepth = backstackEntry[NAV_DEPTH]; |
| 259 | |
| 260 | const controller = backstackEntry.resolvedPage.ios; |
| 261 | const animated = this._currentEntry ? this._getIsAnimatedNavigation(this._currentEntry.entry) : false; |
| 262 | |
| 263 | this._updateActionBar(backstackEntry.resolvedPage); |
| 264 | |
| 265 | if (Trace.isEnabled()) { |
| 266 | Trace.write(`${this}.popToViewControllerAnimated(${controller}, ${animated}); depth = ${navDepth}`, Trace.categories.Navigation); |
| 267 | } |
| 268 | |
| 269 | this._ios.controller.popToViewControllerAnimated(controller, animated); |
| 270 | } |
| 271 | |
| 272 | public _updateActionBar(page?: Page, disableNavBarAnimation = false): void { |
| 273 | super._updateActionBar(page); |
nothing calls this directly
no test coverage detected