/* javascriptcoregtk-6.0.vapi generated by vapigen, do not modify. */ [CCode (cprefix = "JSC", gir_namespace = "JavaScriptCore", gir_version = "6.0", lower_case_cprefix = "jsc_")] namespace JSC { namespace Options { [CCode (cheader_filename = "jsc/jsc.h", cname = "JSC_OPTIONS_USE_DFG")] [Version (since = "2.24")] public const string USE_DFG; [CCode (cheader_filename = "jsc/jsc.h", cname = "JSC_OPTIONS_USE_FTL")] [Version (since = "2.24")] public const string USE_FTL; [CCode (cheader_filename = "jsc/jsc.h", cname = "JSC_OPTIONS_USE_JIT")] [Version (since = "2.24")] public const string USE_JIT; [CCode (cheader_filename = "jsc/jsc.h", cname = "JSC_OPTIONS_USE_LLINT")] [Version (since = "2.24")] public const string USE_LLINT; [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static void @foreach (JSC.OptionsFunc function); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static bool get_boolean (string option, out bool value); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static bool get_double (string option, out double value); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static bool get_int (string option, out int value); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static GLib.OptionGroup get_option_group (); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static bool get_range_string (string option, out string value); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static bool get_size (string option, out size_t value); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static bool get_string (string option, out string value); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static bool get_uint (string option, out uint value); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static bool set_boolean (string option, bool value); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static bool set_double (string option, double value); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static bool set_int (string option, int value); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static bool set_range_string (string option, string value); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static bool set_size (string option, size_t value); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static bool set_string (string option, string value); [CCode (cheader_filename = "jsc/jsc.h")] [Version (since = "2.24")] public static bool set_uint (string option, uint value); } [CCode (cheader_filename = "jsc/jsc.h", type_id = "jsc_class_get_type ()")] public sealed class Class : GLib.Object { [CCode (has_construct_function = false)] protected Class (); [CCode (cname = "jsc_class_add_constructor_variadic")] public JSC.Value add_constructor (string? name, [CCode (delegate_target_pos = 2.33333, destroy_notify_pos = 2.66667, type = "GCallback")] owned JSC.ClassConstructorCb callback, GLib.Type return_type); [CCode (cname = "jsc_class_add_method_variadic")] public void add_method (string name, [CCode (delegate_target_pos = 2.33333, destroy_notify_pos = 2.66667, type = "GCallback")] owned JSC.ClassMethodCb callback, GLib.Type return_type); public void add_property (string name, GLib.Type property_type, [CCode (delegate_target_pos = 4.33333, destroy_notify_pos = 4.66667, type = "GCallback")] owned JSC.ClassGetPropertyCb? getter, [CCode (delegate_target_pos = 4.33333, destroy_notify_pos = 4.66667, type = "GCallback")] owned JSC.ClassSetPropertyCb? setter); public unowned string get_name (); public unowned JSC.Class get_parent (); [NoAccessorMethod] public JSC.Context context { construct; } public string name { get; construct; } public JSC.Class parent { get; construct; } } [CCode (cheader_filename = "jsc/jsc.h", type_id = "jsc_context_get_type ()")] public sealed class Context : GLib.Object { [CCode (has_construct_function = false)] public Context (); public JSC.CheckSyntaxResult check_syntax (string code, ssize_t length, JSC.CheckSyntaxMode mode, string uri, uint line_number, out JSC.Exception exception); public void clear_exception (); public JSC.Value evaluate (string code, ssize_t length); public JSC.Value evaluate_in_object (string code, ssize_t length, void* object_instance, JSC.Class? object_class, string uri, uint line_number, out JSC.Value object); public JSC.Value evaluate_with_source_uri (string code, ssize_t length, string uri, uint line_number); public static unowned JSC.Context? get_current (); public unowned JSC.Exception? get_exception (); public JSC.Value get_global_object (); public JSC.Value get_value (string name); public unowned JSC.VirtualMachine get_virtual_machine (); public void pop_exception_handler (); public void push_exception_handler (owned JSC.ExceptionHandler handler); public unowned JSC.Class register_class (string name, JSC.Class? parent_class, JSC.ClassVTable? vtable, GLib.DestroyNotify? destroy_notify); public void set_value (string name, JSC.Value value); public void @throw (string error_message); public void throw_exception (JSC.Exception exception); public void throw_with_name (string error_name, string error_message); [CCode (has_construct_function = false)] public Context.with_virtual_machine (JSC.VirtualMachine vm); public JSC.VirtualMachine virtual_machine { get; construct; } } [CCode (cheader_filename = "jsc/jsc.h", type_id = "jsc_exception_get_type ()")] public sealed class Exception : GLib.Object { [CCode (has_construct_function = false)] public Exception (JSC.Context context, string message); public unowned string? get_backtrace_string (); public uint get_column_number (); public uint get_line_number (); public unowned string get_message (); public unowned string get_name (); public unowned string? get_source_uri (); public string report (); public string to_string (); [CCode (has_construct_function = false)] public Exception.with_name (JSC.Context context, string name, string message); } [CCode (cheader_filename = "jsc/jsc.h", type_id = "jsc_value_get_type ()")] public sealed class Value : GLib.Object { [CCode (has_construct_function = false)] protected Value (); [CCode (has_construct_function = false)] [Version (since = "2.38")] public Value.array_buffer (JSC.Context context, void* data, size_t size, GLib.DestroyNotify? destroy_notify, void* user_data); [Version (since = "2.38")] public void* array_buffer_get_data (size_t? size); [Version (since = "2.38")] public size_t array_buffer_get_size (); [CCode (has_construct_function = false)] public Value.array_from_garray (JSC.Context context, GLib.GenericArray? array); [CCode (has_construct_function = false)] public Value.array_from_strv (JSC.Context context, [CCode (array_length = false, array_null_terminated = true)] global::string[] strv); [CCode (has_construct_function = false)] public Value.boolean (JSC.Context context, bool value); public JSC.Value constructor_callv ([CCode (array_length_cname = "n_parameters", array_length_pos = 0.5, array_length_type = "guint")] JSC.Value[]? parameters); [CCode (has_construct_function = false)] [Version (since = "2.28")] public Value.from_json (JSC.Context context, global::string json); public JSC.Value function_callv ([CCode (array_length_cname = "n_parameters", array_length_pos = 0.5, array_length_type = "guint")] JSC.Value[]? parameters); [CCode (has_construct_function = false)] public Value.function_variadic (JSC.Context context, global::string? name, GLib.Callback callback, void* user_data, GLib.DestroyNotify? destroy_notify, GLib.Type return_type); [CCode (has_construct_function = false)] public Value.functionv (JSC.Context context, global::string? name, GLib.Callback callback, void* user_data, GLib.DestroyNotify? destroy_notify, GLib.Type return_type, [CCode (array_length_cname = "n_parameters", array_length_pos = 6.5, array_length_type = "guint")] GLib.Type[]? parameter_types); public unowned JSC.Context get_context (); public bool is_array (); [Version (since = "2.38")] public bool is_array_buffer (); public bool is_boolean (); public bool is_constructor (); public bool is_function (); public bool is_null (); public bool is_number (); public bool is_object (); public bool is_string (); [Version (since = "2.38")] public bool is_typed_array (); public bool is_undefined (); [CCode (has_construct_function = false)] public Value.@null (JSC.Context context); [CCode (has_construct_function = false)] public Value.number (JSC.Context context, double number); [CCode (has_construct_function = false)] public Value.object (JSC.Context context, owned void* instance, JSC.Class? jsc_class); public void object_define_property_accessor (global::string property_name, JSC.ValuePropertyFlags flags, GLib.Type property_type, [CCode (scope = "async")] GLib.Callback? getter, GLib.Callback? setter, void* user_data, GLib.DestroyNotify? destroy_notify); public void object_define_property_data (global::string property_name, JSC.ValuePropertyFlags flags, JSC.Value? property_value); public bool object_delete_property (global::string name); [CCode (array_length = false, array_null_terminated = true)] public global::string[]? object_enumerate_properties (); public JSC.Value object_get_property (global::string name); public JSC.Value object_get_property_at_index (uint index); public bool object_has_property (global::string name); public JSC.Value object_invoke_methodv (global::string name, [CCode (array_length_cname = "n_parameters", array_length_pos = 1.5, array_length_type = "guint")] JSC.Value[]? parameters); public bool object_is_instance_of (global::string name); public void object_set_property (global::string name, JSC.Value property); public void object_set_property_at_index (uint index, JSC.Value property); [CCode (has_construct_function = false)] public Value.string (JSC.Context context, global::string? string); [CCode (has_construct_function = false)] public Value.string_from_bytes (JSC.Context context, GLib.Bytes? bytes); public bool to_boolean (); public double to_double (); public int32 to_int32 (); [Version (since = "2.28")] public global::string to_json (uint indent); public global::string to_string (); public GLib.Bytes to_string_as_bytes (); [CCode (has_construct_function = false)] [Version (since = "2.38")] public Value.typed_array (JSC.Context context, JSC.TypedArrayType type, size_t length); [Version (since = "2.38")] public JSC.Value typed_array_get_buffer (); [Version (since = "2.38")] public void* typed_array_get_data (out size_t length); [Version (since = "2.38")] public size_t typed_array_get_length (); [Version (since = "2.38")] public size_t typed_array_get_offset (); [Version (since = "2.38")] public size_t typed_array_get_size (); [Version (since = "2.38")] public JSC.TypedArrayType typed_array_get_type (); [CCode (has_construct_function = false)] [Version (since = "2.38")] public Value.typed_array_with_buffer (JSC.Value array_buffer, JSC.TypedArrayType type, size_t offset, ssize_t length); [CCode (has_construct_function = false)] public Value.undefined (JSC.Context context); public JSC.Context context { get; construct; } } [CCode (cheader_filename = "jsc/jsc.h", type_id = "jsc_virtual_machine_get_type ()")] public sealed class VirtualMachine : GLib.Object { [CCode (has_construct_function = false)] public VirtualMachine (); } [CCode (cheader_filename = "jsc/jsc.h", type_id = "jsc_weak_value_get_type ()")] public sealed class WeakValue : GLib.Object { [CCode (has_construct_function = false)] public WeakValue (JSC.Value value); public JSC.Value get_value (); [NoAccessorMethod] public JSC.Value value { construct; } public signal void cleared (); } [CCode (cheader_filename = "jsc/jsc.h", has_type_id = false)] public struct ClassVTable { public weak JSC.ClassGetPropertyFunction get_property; public weak JSC.ClassSetPropertyFunction set_property; public weak JSC.ClassHasPropertyFunction has_property; public weak JSC.ClassDeletePropertyFunction delete_property; public weak JSC.ClassEnumeratePropertiesFunction enumerate_properties; } [CCode (cheader_filename = "jsc/jsc.h", cprefix = "JSC_CHECK_SYNTAX_MODE_", has_type_id = false)] public enum CheckSyntaxMode { SCRIPT, MODULE } [CCode (cheader_filename = "jsc/jsc.h", cprefix = "JSC_CHECK_SYNTAX_RESULT_", has_type_id = false)] public enum CheckSyntaxResult { SUCCESS, RECOVERABLE_ERROR, IRRECOVERABLE_ERROR, UNTERMINATED_LITERAL_ERROR, OUT_OF_MEMORY_ERROR, STACK_OVERFLOW_ERROR } [CCode (cheader_filename = "jsc/jsc.h", cprefix = "JSC_OPTION_", has_type_id = false)] [Version (since = "2.24")] public enum OptionType { BOOLEAN, INT, UINT, SIZE, DOUBLE, STRING, RANGE_STRING } [CCode (cheader_filename = "jsc/jsc.h", cprefix = "JSC_TYPED_ARRAY_", has_type_id = false)] [Version (since = "2.38")] public enum TypedArrayType { NONE, INT8, INT16, INT32, INT64, UINT8, UINT8_CLAMPED, UINT16, UINT32, UINT64, FLOAT32, FLOAT64 } [CCode (cheader_filename = "jsc/jsc.h", cprefix = "JSC_VALUE_PROPERTY_", has_type_id = false)] [Flags] public enum ValuePropertyFlags { CONFIGURABLE, ENUMERABLE, WRITABLE } [CCode (cheader_filename = "jsc/jsc.h", cname = "GCallback", instance_pos = 1.9)] public delegate T ClassConstructorCb (GLib.GenericArray values); [CCode (cheader_filename = "jsc/jsc.h", has_target = false)] public delegate bool ClassDeletePropertyFunction (JSC.Class jsc_class, JSC.Context context, void* instance, string name); [CCode (array_length = false, array_null_terminated = true, cheader_filename = "jsc/jsc.h", has_target = false)] public delegate string[]? ClassEnumeratePropertiesFunction (JSC.Class jsc_class, JSC.Context context, void* instance); [CCode (cheader_filename = "jsc/jsc.h", cname = "GCallback", instance_pos = 1.9)] public delegate T ClassGetPropertyCb (JSC.Class instance); [CCode (cheader_filename = "jsc/jsc.h", has_target = false)] public delegate JSC.Value? ClassGetPropertyFunction (JSC.Class jsc_class, JSC.Context context, void* instance, string name); [CCode (cheader_filename = "jsc/jsc.h", has_target = false)] public delegate bool ClassHasPropertyFunction (JSC.Class jsc_class, JSC.Context context, void* instance, string name); [CCode (cheader_filename = "jsc/jsc.h", cname = "GCallback", instance_pos = 2.9)] public delegate T ClassMethodCb (JSC.Class instance, GLib.GenericArray values); [CCode (cheader_filename = "jsc/jsc.h", cname = "GCallback", instance_pos = 2.9)] public delegate void ClassSetPropertyCb (JSC.Class instance, T value); [CCode (cheader_filename = "jsc/jsc.h", has_target = false)] public delegate bool ClassSetPropertyFunction (JSC.Class jsc_class, JSC.Context context, void* instance, string name, JSC.Value value); [CCode (cheader_filename = "jsc/jsc.h", instance_pos = 2.9)] public delegate void ExceptionHandler (JSC.Context context, JSC.Exception exception); [CCode (cheader_filename = "jsc/jsc.h", instance_pos = 3.9)] [Version (since = "2.24")] public delegate bool OptionsFunc (string option, JSC.OptionType type, string? description); [CCode (cheader_filename = "jsc/jsc.h", cname = "JSC_MAJOR_VERSION")] public const int MAJOR_VERSION; [CCode (cheader_filename = "jsc/jsc.h", cname = "JSC_MICRO_VERSION")] public const int MICRO_VERSION; [CCode (cheader_filename = "jsc/jsc.h", cname = "JSC_MINOR_VERSION")] public const int MINOR_VERSION; [CCode (cheader_filename = "jsc/jsc.h")] public static uint get_major_version (); [CCode (cheader_filename = "jsc/jsc.h")] public static uint get_micro_version (); [CCode (cheader_filename = "jsc/jsc.h")] public static uint get_minor_version (); }