(run)
| 86 | } |
| 87 | |
| 88 | getIdentifiers(run) { |
| 89 | const trackedIdentifiers = this.trackedIdentifiers = []; |
| 90 | this.pushState(states.trackIdentifiers); |
| 91 | run(); |
| 92 | this.trackedIdentifiers = null; |
| 93 | this.popState(states.trackIdentifiers); |
| 94 | return trackedIdentifiers; |
| 95 | } |
| 96 | |
| 97 | /** |
| 98 | * @param {string} name |