(scope, properties)
| 326 | |
| 327 | class ScopeSnapshot { |
| 328 | constructor(scope, properties) { |
| 329 | ObjectAssign(this, scope); |
| 330 | this.properties = new SafeMap(); |
| 331 | this.completionGroup = ArrayPrototypeMap(properties, (prop) => { |
| 332 | const value = new RemoteObject(prop.value); |
| 333 | this.properties.set(prop.name, value); |
| 334 | return prop.name; |
| 335 | }); |
| 336 | } |
| 337 | |
| 338 | [customInspectSymbol](depth, opts) { |
| 339 | const type = StringPrototypeToUpperCase(this.type[0]) + |
nothing calls this directly
no test coverage detected