devtools-protocol 0.0.1673900 → 0.0.1674729
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/json/js_protocol.json +7 -0
- package/package.json +1 -1
- package/pdl/js_protocol.pdl +2 -0
- package/types/protocol.d.ts +5 -0
package/json/js_protocol.json
CHANGED
|
@@ -507,6 +507,13 @@
|
|
|
507
507
|
"experimental": true,
|
|
508
508
|
"optional": true,
|
|
509
509
|
"$ref": "Runtime.TimeDelta"
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
"name": "scopeNumber",
|
|
513
|
+
"description": "Specifies the scope number to evaluate the expression in (default: 0, innermost scope).",
|
|
514
|
+
"experimental": true,
|
|
515
|
+
"optional": true,
|
|
516
|
+
"type": "integer"
|
|
510
517
|
}
|
|
511
518
|
],
|
|
512
519
|
"returns": [
|
package/package.json
CHANGED
package/pdl/js_protocol.pdl
CHANGED
|
@@ -212,6 +212,8 @@ domain Debugger
|
|
|
212
212
|
optional boolean throwOnSideEffect
|
|
213
213
|
# Terminate execution after timing out (number of milliseconds).
|
|
214
214
|
experimental optional Runtime.TimeDelta timeout
|
|
215
|
+
# Specifies the scope number to evaluate the expression in (default: 0, innermost scope).
|
|
216
|
+
experimental optional integer scopeNumber
|
|
215
217
|
returns
|
|
216
218
|
# Object wrapper for the evaluation result.
|
|
217
219
|
Runtime.RemoteObject result
|
package/types/protocol.d.ts
CHANGED
|
@@ -381,6 +381,11 @@ export namespace Protocol {
|
|
|
381
381
|
* @experimental
|
|
382
382
|
*/
|
|
383
383
|
timeout?: Runtime.TimeDelta;
|
|
384
|
+
/**
|
|
385
|
+
* Specifies the scope number to evaluate the expression in (default: 0, innermost scope).
|
|
386
|
+
* @experimental
|
|
387
|
+
*/
|
|
388
|
+
scopeNumber?: integer;
|
|
384
389
|
}
|
|
385
390
|
|
|
386
391
|
export interface EvaluateOnCallFrameResponse {
|