(size)
| 228 | } |
| 229 | |
| 230 | function createSetLike(size) { |
| 231 | return { |
| 232 | size: size, |
| 233 | has: function () { |
| 234 | return false; |
| 235 | }, |
| 236 | keys: function () { |
| 237 | return { |
| 238 | next: function () { |
| 239 | return { done: true }; |
| 240 | } |
| 241 | }; |
| 242 | } |
| 243 | }; |
| 244 | } |
| 245 | |
| 246 | function createSetLikeWithInfinitySize(size) { |
| 247 | return { |
no outgoing calls
no test coverage detected
searching dependent graphs…