CallFunctionOnParameterType

@native @JSType trait CallFunctionOnParameterType extends StObject
Companion
object
trait StObject
class Object
trait Any
class Object
trait Matchable
class Any

Value members

Inherited methods

def hasOwnProperty(v: String): Boolean
Inherited from
Object
def isPrototypeOf(v: Object): Boolean
Inherited from
Object
def propertyIsEnumerable(v: String): Boolean
Inherited from
Object
def toLocaleString(): String
Inherited from
Object
def valueOf(): Any
Inherited from
Object

Concrete fields

var arguments: UndefOr[Array[CallArgument]]

Call arguments. All call arguments must belong to the same JavaScript world as the target object.

Call arguments. All call arguments must belong to the same JavaScript world as the target object.

var awaitPromise: UndefOr[Boolean]

Whether execution should <code>await</code> for resulting value and return once awaited promise is resolved.

Whether execution should <code>await</code> for resulting value and return once awaited promise is resolved.

Specifies execution context which global object will be used to call function on. Either executionContextId or objectId should be specified.

Specifies execution context which global object will be used to call function on. Either executionContextId or objectId should be specified.

var functionDeclaration: String

Declaration of the function to call.

Declaration of the function to call.

var generatePreview: UndefOr[Boolean]

Whether preview should be generated for the result.

Whether preview should be generated for the result.

var objectGroup: UndefOr[String]

Symbolic group name that can be used to release multiple objects. If objectGroup is not specified and objectId is, objectGroup will be inherited from object.

Symbolic group name that can be used to release multiple objects. If objectGroup is not specified and objectId is, objectGroup will be inherited from object.

var objectId: UndefOr[RemoteObjectId]

Identifier of the object to call function on. Either objectId or executionContextId should be specified.

Identifier of the object to call function on. Either objectId or executionContextId should be specified.

var returnByValue: UndefOr[Boolean]

Whether the result is expected to be a JSON object which should be sent by value.

Whether the result is expected to be a JSON object which should be sent by value.

var silent: UndefOr[Boolean]

In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.

In silent mode exceptions thrown during evaluation are not reported and do not pause execution. Overrides <code>setPauseOnException</code> state.

var userGesture: UndefOr[Boolean]

Whether execution should be treated as initiated by user in the UI.

Whether execution should be treated as initiated by user in the UI.