Method
JavaScriptCoreValueobject_invoke_method
Declaration [src]
JSCValue*
jsc_value_object_invoke_method (
JSCValue* value,
const char* name,
GType first_parameter_type,
...
)
Description [src]
Invoke method with name
on object referenced by value
, passing the given parameters. If
first_parameter_type
is G_TYPE_NONE
no parameters will be passed to the method.
The object instance will be handled automatically even when the method is a custom one
registered with jsc_class_add_method()
, so it should never be passed explicitly as parameter
of this function.
This function always returns a JSCValue
, in case of void methods a JSCValue
referencing
Parameters
name |
const char* |
The method name. |
|
The data is owned by the caller of the function. | |
The string is a NUL terminated UTF-8 string. | |
first_parameter_type |
GType |
|
|
... |
|
Value of the first parameter, followed optionally by more type/value pairs, followed by |
Return value
Returns: | JSCValue |
A |
|
The caller of the method takes ownership of the data, and is responsible for freeing it. |