(isShallow2 = false)
| 1122 | } |
| 1123 | class MutableReactiveHandler extends BaseReactiveHandler { |
| 1124 | constructor(isShallow2 = false) { |
| 1125 | super(false, isShallow2); |
| 1126 | } |
| 1127 | set(target, key, value, receiver) { |
| 1128 | let oldValue = target[key]; |
| 1129 | const isArrayWithIntegerKey = isArray(target) && isIntegerKey(key); |
nothing calls this directly
no outgoing calls
no test coverage detected