(this: Extract<T, Material>)
| 15 | Object.defineProperty(target, propertyKey, { |
| 16 | enumerable: true, |
| 17 | get(this: Extract<T, Material>): boolean { |
| 18 | return this.defines?.[name] != null |
| 19 | }, |
| 20 | set(this: Extract<T, Material>, value: boolean) { |
| 21 | if (value !== this[propertyKey]) { |
| 22 | if (value) { |
nothing calls this directly
no outgoing calls
no test coverage detected