Method
JavaScriptCoreValueconstructor_call
Declaration [src]
JSCValue*
jsc_value_constructor_call (
JSCValue* value,
GType first_parameter_type,
...
)
Description [src]
Invoke value
. If first_parameter_type
is G_TYPE_NONE
no parameters will be passed to the constructor.
This method is not directly available to language bindings.
The implementation of this method is provided by jsc_value_constructor_callv()
in language bindings
Parameters
first_parameter_type
-
Type:
GType
GType
of first parameter, orG_TYPE_NONE
. ...
-
Type:
Value of the first parameter, followed optionally by more type/value pairs, followed by
G_TYPE_NONE
.
Return value
Type: JSCValue
A JSCValue
referencing the newly created object instance.
The caller of the method takes ownership of the data, and is responsible for freeing it. |