forked from nulang-org/nulang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
71 lines (70 loc) · 1.41 KB
/
Copy pathlib.rs
File metadata and controls
71 lines (70 loc) · 1.41 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#![allow(
clippy::type_complexity,
clippy::too_many_arguments,
clippy::missing_transmute_annotations
)]
pub mod aot;
pub mod ast;
pub mod backends;
pub mod bytecode;
#[cfg(feature = "wasmfx-backend")]
pub mod cir;
#[cfg(feature = "wasmfx-backend")]
pub mod cir_analysis;
#[cfg(feature = "wasmfx-backend")]
pub mod cir_lower;
pub mod core_vm;
pub mod cranelift_utils;
pub mod dap;
pub mod docgen;
pub mod dst;
pub mod effect_checker;
pub mod ffi;
pub mod fmt;
pub mod format;
pub mod fuzz;
pub mod hir;
pub mod hir_lower;
pub mod integration_tests;
pub mod jit;
pub mod lexer;
#[cfg(feature = "lsp")]
pub mod lsp;
pub mod mir;
pub mod mir_codegen;
pub mod mir_inline;
pub mod mir_lower;
#[cfg(feature = "wasm-backend")]
pub mod mir_wasm;
pub mod mir_wasm_simd;
#[cfg(feature = "otel")]
pub mod observability;
pub mod package;
pub mod parser;
pub mod prelude_source;
#[cfg(feature = "python")]
pub mod python;
pub mod registry;
pub mod repl;
pub mod resolver;
pub mod runtime;
pub mod stdlib;
#[cfg(test)]
pub mod stress_tests;
pub mod tool_schema;
pub mod type_ir;
pub mod type_metadata;
pub mod typechecker;
pub mod types;
pub mod value_layout;
pub mod vm;
#[cfg(feature = "wasm-backend")]
pub mod wasm_component_runtime;
#[cfg(feature = "wasm-backend")]
pub mod wasm_runtime;
pub mod wasm_types;
#[cfg(feature = "wasmfx-backend")]
pub mod wasmfx_backend;
#[cfg(feature = "wasmfx-backend")]
pub mod wasmfx_runtime;
pub mod witgen;