Updating to latest protocol.json definition
This commit is contained in:
parent
4137fe57cc
commit
f557f48716
|
@ -148,6 +148,7 @@ const (
|
|||
PausedReasonPromiseRejection PausedReason = "promiseRejection"
|
||||
PausedReasonOOM PausedReason = "OOM"
|
||||
PausedReasonOther PausedReason = "other"
|
||||
PausedReasonAmbiguous PausedReason = "ambiguous"
|
||||
)
|
||||
|
||||
// MarshalEasyJSON satisfies easyjson.Marshaler.
|
||||
|
@ -181,6 +182,8 @@ func (t *PausedReason) UnmarshalEasyJSON(in *jlexer.Lexer) {
|
|||
*t = PausedReasonOOM
|
||||
case PausedReasonOther:
|
||||
*t = PausedReasonOther
|
||||
case PausedReasonAmbiguous:
|
||||
*t = PausedReasonAmbiguous
|
||||
|
||||
default:
|
||||
in.AddError(errors.New("unknown PausedReason value"))
|
||||
|
|
|
@ -12023,7 +12023,8 @@
|
|||
"debugCommand",
|
||||
"promiseRejection",
|
||||
"OOM",
|
||||
"other"
|
||||
"other",
|
||||
"ambiguous"
|
||||
],
|
||||
"description": "Pause reason."
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue
Block a user