(size, root, ownerID, hash)
| 679 | } |
| 680 | |
| 681 | function makeMap(size, root, ownerID, hash) { |
| 682 | const map = Object.create(MapPrototype); |
| 683 | map.size = size; |
| 684 | map._root = root; |
| 685 | map.__ownerID = ownerID; |
| 686 | map.__hash = hash; |
| 687 | map.__altered = false; |
| 688 | return map; |
| 689 | } |
| 690 | |
| 691 | let EMPTY_MAP; |
| 692 | export function emptyMap() { |
no outgoing calls
no test coverage detected