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