(target, sourceKey, key)
| 4616 | }; |
| 4617 | |
| 4618 | function proxy (target, sourceKey, key) { |
| 4619 | sharedPropertyDefinition.get = function proxyGetter () { |
| 4620 | return this[sourceKey][key] |
| 4621 | }; |
| 4622 | sharedPropertyDefinition.set = function proxySetter (val) { |
| 4623 | this[sourceKey][key] = val; |
| 4624 | }; |
| 4625 | Object.defineProperty(target, key, sharedPropertyDefinition); |
| 4626 | } |
| 4627 | |
| 4628 | function initState (vm) { |
| 4629 | vm._watchers = []; |
no outgoing calls
no test coverage detected