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
33
34
35
36
37
38
39
40
41
// 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::translate::*;

glib::wrapper! {
    /// JSCVirtualMachine represents a group of JSCContext<!-- -->s. It allows
    /// concurrent JavaScript execution by creating a different instance of
    /// JSCVirtualMachine in each thread.
    ///
    /// To create a group of JSCContext<!-- -->s pass the same JSCVirtualMachine
    /// instance to every JSCContext constructor.
    #[doc(alias = "JSCVirtualMachine")]
    pub struct VirtualMachine(Object<ffi::JSCVirtualMachine, ffi::JSCVirtualMachineClass>);

    match fn {
        type_ => || ffi::jsc_virtual_machine_get_type(),
    }
}

impl VirtualMachine {
    /// Create a new #JSCVirtualMachine.
    ///
    /// # Returns
    ///
    /// the newly created #JSCVirtualMachine.
    #[doc(alias = "jsc_virtual_machine_new")]
    pub fn new() -> VirtualMachine {
        assert_initialized_main_thread!();
        unsafe { from_glib_full(ffi::jsc_virtual_machine_new()) }
    }
}

impl Default for VirtualMachine {
    fn default() -> Self {
        Self::new()
    }
}