(target, prop, value)
| 305 | executeJSLibraryFile(filename, contents) { |
| 306 | const userLibraryProxy = new Proxy(this.library, { |
| 307 | set(target, prop, value) { |
| 308 | target[prop] = value; |
| 309 | if (!isDecorator(prop)) { |
| 310 | target[prop + '__user'] = true; |
| 311 | } |
| 312 | return true; |
| 313 | }, |
| 314 | }); |
| 315 | |
| 316 | const isUserLibrary = !isBeneath(filename, systemLibdir); |
no test coverage detected