(map, type, reverse)
| 623 | |
| 624 | class MapIterator extends Iterator { |
| 625 | constructor(map, type, reverse) { |
| 626 | this._type = type; |
| 627 | this._reverse = reverse; |
| 628 | this._stack = map._root && mapIteratorFrame(map._root); |
| 629 | } |
| 630 | |
| 631 | next() { |
| 632 | const type = this._type; |
nothing calls this directly
no test coverage detected