(value)
| 311 | return this.$$c && prop in this.$$c ? this.$$c[prop] : this.$$d[prop]; |
| 312 | }, |
| 313 | set(value) { |
| 314 | value = get_custom_element_value(prop, value, props_definition); |
| 315 | this.$$d[prop] = value; |
| 316 | var component = this.$$c; |
| 317 | |
| 318 | if (component) { |
| 319 | // // If the instance has an accessor, use that instead |
| 320 | var setter = get_descriptor(component, prop)?.get; |
| 321 | |
| 322 | if (setter) { |
| 323 | component[prop] = value; |
| 324 | } else { |
| 325 | component.$set({ [prop]: value }); |
| 326 | } |
| 327 | } |
| 328 | } |
| 329 | }); |
| 330 | }); |
| 331 | exports.forEach((property) => { |
no test coverage detected