Add Binding Request
data class AddBindingRequest(name: String, executionContextId: ExecutionContextId?, executionContextName: String?)
Content copied to clipboard
Represents request frame that can be used with Runtime#addBinding operation call.
If executionContextId is empty, adds binding with the given name on the global objects of all inspected contexts, including those created later, bindings survive reloads. Binding function takes exactly one argument, this argument should be string, in case of any other input, function throws an exception. Each binding function call produces Runtime.bindingCalled notification.
See also
Constructors
AddBindingRequest
Link copied to clipboard
fun AddBindingRequest(name: String, executionContextId: ExecutionContextId? = null, executionContextName: String? = null)
Content copied to clipboard
Properties
Sources
jvm source
Link copied to clipboard