* Runs the mutate operation via vsync. * @param {function():undefined} mutator
(mutator)
| 212 | * @param {function():undefined} mutator |
| 213 | */ |
| 214 | mutate(mutator) { |
| 215 | this.run({ |
| 216 | measure: undefined, // For uniform hidden class. |
| 217 | mutate: mutator, |
| 218 | }); |
| 219 | } |
| 220 | |
| 221 | /** |
| 222 | * Runs `mutate` wrapped in a promise. |
no test coverage detected