mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-07 22:55:00 +00:00
20 lines
442 B
Rust
20 lines
442 B
Rust
#![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)]
|
|
|
|
#[macro_use]
|
|
pub mod parser;
|
|
pub mod ast;
|
|
pub mod blankspace;
|
|
pub mod expr;
|
|
pub mod header;
|
|
pub mod ident;
|
|
pub mod keyword;
|
|
pub mod module;
|
|
pub mod number_literal;
|
|
pub mod pattern;
|
|
pub mod problems;
|
|
pub mod state;
|
|
pub mod string_literal;
|
|
pub mod test_helpers;
|
|
pub mod type_annotation;
|