Updating to latest protocol.json
This commit is contained in:
parent
23221e4265
commit
568cab6121
|
@ -2899,6 +2899,16 @@ func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpDebugger32(in *jlexer.Lexer, o
|
||||||
out.IsModule = bool(in.Bool())
|
out.IsModule = bool(in.Bool())
|
||||||
case "length":
|
case "length":
|
||||||
out.Length = int64(in.Int64())
|
out.Length = int64(in.Int64())
|
||||||
|
case "stackTrace":
|
||||||
|
if in.IsNull() {
|
||||||
|
in.Skip()
|
||||||
|
out.StackTrace = nil
|
||||||
|
} else {
|
||||||
|
if out.StackTrace == nil {
|
||||||
|
out.StackTrace = new(runtime.StackTrace)
|
||||||
|
}
|
||||||
|
(*out.StackTrace).UnmarshalEasyJSON(in)
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
in.SkipRecursive()
|
in.SkipRecursive()
|
||||||
}
|
}
|
||||||
|
@ -3025,6 +3035,18 @@ func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpDebugger32(out *jwriter.Writer
|
||||||
out.RawString("\"length\":")
|
out.RawString("\"length\":")
|
||||||
out.Int64(int64(in.Length))
|
out.Int64(int64(in.Length))
|
||||||
}
|
}
|
||||||
|
if in.StackTrace != nil {
|
||||||
|
if !first {
|
||||||
|
out.RawByte(',')
|
||||||
|
}
|
||||||
|
first = false
|
||||||
|
out.RawString("\"stackTrace\":")
|
||||||
|
if in.StackTrace == nil {
|
||||||
|
out.RawString("null")
|
||||||
|
} else {
|
||||||
|
(*in.StackTrace).MarshalEasyJSON(out)
|
||||||
|
}
|
||||||
|
}
|
||||||
out.RawByte('}')
|
out.RawByte('}')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -3096,6 +3118,16 @@ func easyjsonC5a4559bDecodeGithubComKnqChromedpCdpDebugger33(in *jlexer.Lexer, o
|
||||||
out.IsModule = bool(in.Bool())
|
out.IsModule = bool(in.Bool())
|
||||||
case "length":
|
case "length":
|
||||||
out.Length = int64(in.Int64())
|
out.Length = int64(in.Int64())
|
||||||
|
case "stackTrace":
|
||||||
|
if in.IsNull() {
|
||||||
|
in.Skip()
|
||||||
|
out.StackTrace = nil
|
||||||
|
} else {
|
||||||
|
if out.StackTrace == nil {
|
||||||
|
out.StackTrace = new(runtime.StackTrace)
|
||||||
|
}
|
||||||
|
(*out.StackTrace).UnmarshalEasyJSON(in)
|
||||||
|
}
|
||||||
default:
|
default:
|
||||||
in.SkipRecursive()
|
in.SkipRecursive()
|
||||||
}
|
}
|
||||||
|
@ -3214,6 +3246,18 @@ func easyjsonC5a4559bEncodeGithubComKnqChromedpCdpDebugger33(out *jwriter.Writer
|
||||||
out.RawString("\"length\":")
|
out.RawString("\"length\":")
|
||||||
out.Int64(int64(in.Length))
|
out.Int64(int64(in.Length))
|
||||||
}
|
}
|
||||||
|
if in.StackTrace != nil {
|
||||||
|
if !first {
|
||||||
|
out.RawByte(',')
|
||||||
|
}
|
||||||
|
first = false
|
||||||
|
out.RawString("\"stackTrace\":")
|
||||||
|
if in.StackTrace == nil {
|
||||||
|
out.RawString("null")
|
||||||
|
} else {
|
||||||
|
(*in.StackTrace).MarshalEasyJSON(out)
|
||||||
|
}
|
||||||
|
}
|
||||||
out.RawByte('}')
|
out.RawByte('}')
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -25,6 +25,7 @@ type EventScriptParsed struct {
|
||||||
HasSourceURL bool `json:"hasSourceURL,omitempty"` // True, if this script has sourceURL.
|
HasSourceURL bool `json:"hasSourceURL,omitempty"` // True, if this script has sourceURL.
|
||||||
IsModule bool `json:"isModule,omitempty"` // True, if this script is ES6 module.
|
IsModule bool `json:"isModule,omitempty"` // True, if this script is ES6 module.
|
||||||
Length int64 `json:"length,omitempty"` // This script length.
|
Length int64 `json:"length,omitempty"` // This script length.
|
||||||
|
StackTrace *runtime.StackTrace `json:"stackTrace,omitempty"` // JavaScript top stack frame of where the script parsed event was triggered if available.
|
||||||
}
|
}
|
||||||
|
|
||||||
// EventScriptFailedToParse fired when virtual machine fails to parse the
|
// EventScriptFailedToParse fired when virtual machine fails to parse the
|
||||||
|
@ -43,6 +44,7 @@ type EventScriptFailedToParse struct {
|
||||||
HasSourceURL bool `json:"hasSourceURL,omitempty"` // True, if this script has sourceURL.
|
HasSourceURL bool `json:"hasSourceURL,omitempty"` // True, if this script has sourceURL.
|
||||||
IsModule bool `json:"isModule,omitempty"` // True, if this script is ES6 module.
|
IsModule bool `json:"isModule,omitempty"` // True, if this script is ES6 module.
|
||||||
Length int64 `json:"length,omitempty"` // This script length.
|
Length int64 `json:"length,omitempty"` // This script length.
|
||||||
|
StackTrace *runtime.StackTrace `json:"stackTrace,omitempty"` // JavaScript top stack frame of where the script parsed event was triggered if available.
|
||||||
}
|
}
|
||||||
|
|
||||||
// EventBreakpointResolved fired when breakpoint is resolved to an actual
|
// EventBreakpointResolved fired when breakpoint is resolved to an actual
|
||||||
|
|
|
@ -12014,6 +12014,13 @@
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"description": "This script length.",
|
"description": "This script length.",
|
||||||
"experimental": true
|
"experimental": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "stackTrace",
|
||||||
|
"$ref": "Runtime.StackTrace",
|
||||||
|
"optional": true,
|
||||||
|
"description": "JavaScript top stack frame of where the script parsed event was triggered if available.",
|
||||||
|
"experimental": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger."
|
"description": "Fired when virtual machine parses script. This event is also fired for all known and uncollected scripts upon enabling debugger."
|
||||||
|
@ -12093,6 +12100,13 @@
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"description": "This script length.",
|
"description": "This script length.",
|
||||||
"experimental": true
|
"experimental": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "stackTrace",
|
||||||
|
"$ref": "Runtime.StackTrace",
|
||||||
|
"optional": true,
|
||||||
|
"description": "JavaScript top stack frame of where the script parsed event was triggered if available.",
|
||||||
|
"experimental": true
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"description": "Fired when virtual machine fails to parse the script."
|
"description": "Fired when virtual machine fails to parse the script."
|
||||||
|
|
Loading…
Reference in New Issue
Block a user