mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-24 23:13:47 +00:00
11 lines
393 B
Rust
11 lines
393 B
Rust
//! Implements data structures used for efficiently representing unique modules
|
|
//! and identifiers in Roc programs.
|
|
#![warn(clippy::dbg_macro)]
|
|
// See github.com/roc-lang/roc/issues/800 for discussion of the large_enum_variant check.
|
|
#![allow(clippy::large_enum_variant, clippy::upper_case_acronyms)]
|
|
|
|
pub mod called_via;
|
|
pub mod ident;
|
|
pub mod low_level;
|
|
pub mod module_err;
|
|
pub mod symbol;
|