mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 06:14:46 +00:00
14 lines
457 B
Rust
14 lines
457 B
Rust
//! Library for the Roc AST
|
|
//!
|
|
//! Code to represent the [Abstract Syntax Tree](https://en.wikipedia.org/wiki/Abstract_syntax_tree)
|
|
//! as used by the editor. In contrast to the compiler, the types in this AST do
|
|
//! not keep track of the location of the matching code in the source file.
|
|
pub mod ast_error;
|
|
mod builtin_aliases;
|
|
mod canonicalization;
|
|
pub mod constrain;
|
|
pub mod lang;
|
|
pub mod mem_pool;
|
|
pub mod module;
|
|
pub mod parse;
|
|
pub mod solve_type;
|