artichoke_backend/extn/core/
mod.rs

1#![expect(clippy::too_many_lines, reason = "lots of big init functions in this module")]
2#![expect(
3    unsafe_op_in_unsafe_fn,
4    clippy::undocumented_unsafe_blocks,
5    reason = "working through legacy code"
6)]
7
8use crate::extn::prelude::*;
9
10pub(crate) mod array;
11pub(crate) mod artichoke;
12pub(crate) mod basicobject;
13pub(crate) mod comparable;
14pub(crate) mod encoding;
15pub(crate) mod enumerable;
16pub(crate) mod enumerator;
17#[cfg(feature = "core-env")]
18pub(crate) mod env;
19pub(crate) mod exception;
20pub(crate) mod falseclass;
21pub(crate) mod float;
22pub(crate) mod hash;
23pub(crate) mod integer;
24pub(crate) mod kernel;
25#[cfg(feature = "core-regexp")]
26pub(crate) mod matchdata;
27#[cfg(feature = "core-math")]
28pub(crate) mod math;
29pub(crate) mod method;
30pub(crate) mod module;
31pub(crate) mod nilclass;
32pub(crate) mod numeric;
33pub(crate) mod object;
34pub(crate) mod proc;
35#[cfg(feature = "core-random")]
36pub(crate) mod random;
37pub(crate) mod range;
38#[cfg(feature = "core-regexp")]
39pub(crate) mod regexp;
40pub(crate) mod string;
41pub(crate) mod symbol;
42pub(crate) mod thread;
43#[cfg(feature = "core-time")]
44pub(crate) mod time;
45pub(crate) mod trueclass;
46pub(crate) mod warning;
47
48pub fn init(interp: &mut Artichoke) -> InitializeResult<()> {
49    // These core classes are ordered according to the dependency DAG between
50    // them.
51    enumerable::init(interp)?;
52    // `Array` depends on: `Enumerable`
53    array::mruby::init(interp)?;
54    module::init(interp)?;
55    // Some `Exception`s depend on: `attr_accessor` (defined in `Module`)
56    exception::mruby::init(interp)?;
57    comparable::init(interp)?;
58    symbol::mruby::init(interp)?;
59    artichoke::init(interp)?;
60    enumerator::init(interp)?;
61    #[cfg(feature = "core-env")]
62    env::mruby::init(interp)?;
63    hash::init(interp)?;
64    numeric::mruby::init(interp)?;
65    integer::mruby::init(interp)?;
66    float::mruby::init(interp)?;
67    kernel::mruby::init(interp)?;
68    #[cfg(feature = "core-regexp")]
69    matchdata::mruby::init(interp)?;
70    #[cfg(feature = "core-math")]
71    math::mruby::init(interp)?;
72    method::init(interp)?;
73    module::init(interp)?;
74    object::init(interp)?;
75    proc::init(interp)?;
76    trueclass::init(interp)?;
77    falseclass::init(interp)?;
78    nilclass::init(interp)?;
79    basicobject::init(interp)?;
80    #[cfg(feature = "core-random")]
81    random::mruby::init(interp)?;
82    range::init(interp)?;
83    #[cfg(feature = "core-regexp")]
84    regexp::mruby::init(interp)?;
85    // `String` is reliant on `Encoding`
86    encoding::mruby::init(interp)?;
87    string::mruby::init(interp)?;
88    thread::init(interp)?;
89    #[cfg(feature = "core-time")]
90    time::mruby::init(interp)?;
91    warning::init(interp)?;
92    Ok(())
93}