1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// from webkit-gir-files
// DO NOT EDIT

use crate::ffi;
use glib::GStr;

/// Allows the DFG JIT to be used if [`true`].
/// Option type: [`OptionType::Boolean`][crate::OptionType::Boolean]
/// Default value: [`true`].
#[doc(alias = "JSC_OPTIONS_USE_DFG")]
pub static OPTIONS_USE_DFG: &GStr =
    unsafe { GStr::from_utf8_with_nul_unchecked(ffi::JSC_OPTIONS_USE_DFG) };
/// Allows the FTL JIT to be used if [`true`].
/// Option type: [`OptionType::Boolean`][crate::OptionType::Boolean]
/// Default value: [`true`].
#[doc(alias = "JSC_OPTIONS_USE_FTL")]
pub static OPTIONS_USE_FTL: &GStr =
    unsafe { GStr::from_utf8_with_nul_unchecked(ffi::JSC_OPTIONS_USE_FTL) };
/// Allows the executable pages to be allocated for JIT and thunks if [`true`].
/// Option type: [`OptionType::Boolean`][crate::OptionType::Boolean]
/// Default value: [`true`].
#[doc(alias = "JSC_OPTIONS_USE_JIT")]
pub static OPTIONS_USE_JIT: &GStr =
    unsafe { GStr::from_utf8_with_nul_unchecked(ffi::JSC_OPTIONS_USE_JIT) };
/// Allows the LLINT to be used if [`true`].
/// Option type: [`OptionType::Boolean`][crate::OptionType::Boolean]
/// Default value: [`true`].
#[doc(alias = "JSC_OPTIONS_USE_LLINT")]
pub static OPTIONS_USE_LLINT: &GStr =
    unsafe { GStr::from_utf8_with_nul_unchecked(ffi::JSC_OPTIONS_USE_LLINT) };