(name, value)
| 267 | }; |
| 268 | } |
| 269 | function getter(name, value) { |
| 270 | return { |
| 271 | get: function() { |
| 272 | log.push("get" + name); |
| 273 | return value; |
| 274 | }, |
| 275 | set: function(v) { |
| 276 | log.push("set" + name); |
| 277 | } |
| 278 | }; |
| 279 | } |
| 280 | Object.defineProperties(subs, { |
| 281 | 0: getter(0, stringify("a")), |
| 282 | 1: getter(1, stringify("b")), |
no test coverage detected
searching dependent graphs…