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 effects;
10#[cfg(feature = "runtime")]
11#[allow(dead_code)]
12#[path = "main/format_cmd.rs"]
13pub mod format;
14pub mod ir;
15pub mod lexer;
16pub mod nan_value;
17pub mod parser;
18#[cfg(any(feature = "wasm-compile", feature = "playground"))]
19pub mod playground;
20#[cfg(feature = "runtime")]
21pub mod replay;
22pub mod resolver;
23#[cfg(feature = "runtime")]
24pub mod runtime_bench_cases;
25#[cfg(feature = "runtime")]
26pub mod services;
27pub mod source;
28pub mod tail_check;
29pub mod tco;
30pub mod types;
31pub mod value;
32pub mod verify_law;
33#[cfg(feature = "runtime")]
34pub mod vm;