blob: 12660b4d3c58564976d9c7339d18bbd55aca7f5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#![feature(trace_macros)]
#![feature(slice_patterns)]
#![feature(never_type)]
#![allow(
clippy::type_complexity,
clippy::infallible_destructuring_match,
clippy::many_single_char_names,
clippy::match_wild_err_arm,
clippy::redundant_closure,
clippy::ptr_arg
)]
mod tests;
pub mod error;
pub mod semantics;
pub mod syntax;
|