(current)
| 671 | |
| 672 | for (var [hash, current] of Object.entries(FS.nameTable)) { |
| 673 | while (current) { |
| 674 | var next = current.name_next; |
| 675 | |
| 676 | if (mounts.includes(current.mount)) { |
| 677 | FS.destroyNode(current); |
| 678 | } |
| 679 | |
| 680 | current = next; |
| 681 | } |
| 682 | } |
| 683 | |
| 684 | // no longer a mountpoint |
no outgoing calls
no test coverage detected