()
| 240 | inputs.forEach(({propName, transform, isSignal: _isSignal}) => { |
| 241 | Object.defineProperty(NgElementImpl.prototype, propName, { |
| 242 | get(): any { |
| 243 | const inputValue = this.ngElementStrategy.getInputValue(propName); |
| 244 | return _isSignal && isSignal(inputValue) ? inputValue() : inputValue; |
| 245 | }, |
| 246 | set(newValue: any): void { |
| 247 | this.ngElementStrategy.setInputValue(propName, newValue, transform); |
| 248 | }, |
nothing calls this directly
no test coverage detected