()
| 34 | const originalMethod = _originalMethod; |
| 35 | |
| 36 | function performOperation() { |
| 37 | |
| 38 | return that.__performedCachedOperation(this, originalMethod, `${methodName}#${this.uuid}`, arguments); |
| 39 | |
| 40 | } |
| 41 | |
| 42 | Object.defineProperty(obj, methodName, {value: performOperation, enumerable: false}); |
| 43 |
nothing calls this directly
no test coverage detected