(path, obj, prop)
| 4958 | } |
| 4959 | |
| 4960 | function enableProperty(path, obj, prop) { |
| 4961 | const desc= getOwnPropertyDescriptor(obj, prop); |
| 4962 | if( !desc) { |
| 4963 | return; |
| 4964 | } |
| 4965 | enable(path, obj, prop, desc); |
| 4966 | } |
| 4967 | |
| 4968 | function enableAllProperties(path, obj) { |
| 4969 | const descs= getOwnPropertyDescriptors(obj); |
no test coverage detected