1extern crate self as aver;
2
3pub mod ast;
4pub mod ast_rewrite;
5pub mod call_graph;
6pub mod checker;
7pub mod codegen;
8#[cfg(feature = "runtime")]
9pub mod config;
10pub mod diagnostics;
11pub mod effects;
12#[cfg(all(feature = "runtime", feature = "tty-render"))]
13#[allow(dead_code)]
14#[path = "main/format_cmd.rs"]
15pub mod format;
16pub mod ir;
17pub mod lexer;
18pub mod nan_value;
19pub mod parser;
20#[cfg(any(feature = "wasm-compile", feature = "playground"))]
21pub mod playground;
22#[cfg(feature = "runtime")]
23pub mod replay;
24pub mod resolver;
25#[cfg(feature = "runtime")]
26pub mod runtime_bench_cases;
27#[cfg(feature = "runtime")]
28pub mod services;
29pub mod source;
30pub mod tail_check;
31pub mod tco;
32#[cfg(feature = "tty-render")]
33pub mod tty_render;
34pub mod types;
35pub mod value;
36pub mod verify_law;
37pub mod visibility;
38#[cfg(feature = "runtime")]
39pub mod vm;