(targetCacheEntry, property, value)
| 136 | return Reflect.get(targetCacheEntry, property); |
| 137 | }, |
| 138 | set(targetCacheEntry, property, value) { |
| 139 | if (property === 'app') { |
| 140 | _app = value; |
| 141 | return true; |
| 142 | } |
| 143 | |
| 144 | if (property === 'preprocessJs') { |
| 145 | _preprocessJs = value; |
| 146 | return true; |
| 147 | } |
| 148 | |
| 149 | if (targetCacheEntry[TARGET_INSTANCE]) { |
| 150 | return Reflect.set(targetCacheEntry[TARGET_INSTANCE], property, value); |
| 151 | } |
| 152 | |
| 153 | return Reflect.set(targetCacheEntry, property, value); |
| 154 | }, |
| 155 | }); |
| 156 | } |
| 157 |
no outgoing calls
no test coverage detected