(target, sourceKey, key)
| 2649 | }; |
| 2650 | |
| 2651 | function proxy (target, sourceKey, key) { |
| 2652 | sharedPropertyDefinition.get = function proxyGetter () { |
| 2653 | return this[sourceKey][key] |
| 2654 | }; |
| 2655 | sharedPropertyDefinition.set = function proxySetter (val) { |
| 2656 | this[sourceKey][key] = val; |
| 2657 | }; |
| 2658 | Object.defineProperty(target, key, sharedPropertyDefinition); |
| 2659 | } |
| 2660 | |
| 2661 | function initState (vm) { |
| 2662 | vm._watchers = []; |
no outgoing calls
no test coverage detected