()
| 4849 | this._updateSteps(); |
| 4850 | } |
| 4851 | sort() { |
| 4852 | this._list.sort((a4, b7) => { |
| 4853 | if (a4[0] < b7[0]) { |
| 4854 | return -1; |
| 4855 | } |
| 4856 | if (a4[0] > b7[0]) { |
| 4857 | return 1; |
| 4858 | } |
| 4859 | return 0; |
| 4860 | }); |
| 4861 | this._updateSteps(); |
| 4862 | } |
| 4863 | [Symbol.iterator]() { |
| 4864 | return this._list[Symbol.iterator](); |
| 4865 | } |
nothing calls this directly
no test coverage detected