(result)
| 174 | } |
| 175 | |
| 176 | function convertResultToError(result) { |
| 177 | const { className, description } = result; |
| 178 | const err = new ERR_DEBUGGER_ERROR(extractErrorMessage(description)); |
| 179 | err.stack = description; |
| 180 | ObjectDefineProperty(err, 'name', { __proto__: null, value: className }); |
| 181 | return err; |
| 182 | } |
| 183 | |
| 184 | class PropertyPreview { |
| 185 | constructor(attributes) { |
no test coverage detected