(node)
| 1985 | return ((parentid + hash) >>> 0) % FS.nameTable.length; |
| 1986 | }, |
| 1987 | hashAddNode(node) { |
| 1988 | var hash = FS.hashName(node.parent.id, node.name); |
| 1989 | node.name_next = FS.nameTable[hash]; |
| 1990 | FS.nameTable[hash] = node; |
| 1991 | }, |
| 1992 | hashRemoveNode(node) { |
| 1993 | var hash = FS.hashName(node.parent.id, node.name); |
| 1994 | if (FS.nameTable[hash] === node) { |
nothing calls this directly
no outgoing calls
no test coverage detected