({ result, wasThrown })
| 319 | } |
| 320 | |
| 321 | static fromEvalResult({ result, wasThrown }) { |
| 322 | if (wasThrown) return convertResultToError(result); |
| 323 | return new RemoteObject(result); |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | class ScopeSnapshot { |
nothing calls this directly
no test coverage detected