ampc/lib.rs
1//! The Amp compiler interface for Rust.
2//!
3//! Provides the capabilities to compile Amp programs without accessing the command line.
4
5#![feature(box_patterns)]
6
7pub mod clif;
8pub mod codemap;
9pub(crate) mod codespan_reporting;
10mod context;
11pub mod diag;
12pub mod sema;
13pub mod syntax;
14pub mod types;
15pub mod value;
16
17pub use context::*;