(size, head, ownerID, hash)
| 212 | }; |
| 213 | |
| 214 | function makeStack(size, head, ownerID, hash) { |
| 215 | const map = Object.create(StackPrototype); |
| 216 | map.size = size; |
| 217 | map._head = head; |
| 218 | map.__ownerID = ownerID; |
| 219 | map.__hash = hash; |
| 220 | map.__altered = false; |
| 221 | return map; |
| 222 | } |
| 223 | |
| 224 | let EMPTY_STACK; |
| 225 | function emptyStack() { |
no outgoing calls
no test coverage detected