(newItems: any[])
| 424 | }, |
| 425 | |
| 426 | replace(newItems: any[]) { |
| 427 | const adm: ObservableArrayAdministration = this[$mobx] |
| 428 | return adm.spliceWithArray_(0, adm.values_.length, newItems) |
| 429 | }, |
| 430 | |
| 431 | // Used by JSON.stringify |
| 432 | toJSON(): any[] { |
nothing calls this directly
no test coverage detected
searching dependent graphs…