(queryOptions, versions)
| 350 | } |
| 351 | |
| 352 | async commitModules(queryOptions, versions) { |
| 353 | if (this.committedHostVersion == null) throw 'No host'; |
| 354 | |
| 355 | this._commitModulesInner(versions ?? await this.queryCurrentVersionsWithOptions(queryOptions)); |
| 356 | } |
| 357 | |
| 358 | queryAndTruncateHistory() { |
| 359 | const history = this.updateEventHistory; |
nothing calls this directly
no test coverage detected