(
value: Cdp.Runtime.RemoteObject,
scopeRef: IScopeRef,
extraProperties: IExtraProperty[],
)
| 272 | } |
| 273 | |
| 274 | async createScope( |
| 275 | value: Cdp.Runtime.RemoteObject, |
| 276 | scopeRef: IScopeRef, |
| 277 | extraProperties: IExtraProperty[], |
| 278 | ): Promise<Dap.Variable> { |
| 279 | const object = new RemoteObject('', this._cdp, value); |
| 280 | object.scopeRef = scopeRef; |
| 281 | object.extraProperties = extraProperties; |
| 282 | return this._createVariable('', object); |
| 283 | } |
| 284 | |
| 285 | async createVariableForOutput( |
| 286 | text: string, |
no test coverage detected