1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#![no_std]
#![allow(unused_assignments)]
#![allow(unknown_lints)]
#![warn(clippy::all)]
#![recursion_limit = "256"]
//! Ellie Core
//! This is the core utilities for the Ellie Language.
//!
//! Copyright (c) 2020 Behemehal. See license file for details
extern crate alloc;

#[cfg(feature = "std")]
extern crate std;

#[cfg(feature = "compiler_utils")]
#[macro_use]
extern crate lazy_static;
#[doc(hidden)]
#[cfg(feature = "compiler_utils")]
pub mod definite;
pub mod defs;
#[cfg(feature = "compiler_utils")]
pub mod error;
#[cfg(feature = "compiler_utils")]
pub mod information;
#[cfg(feature = "compiler_utils")]
pub mod module_path;
#[doc(hidden)]
pub mod native;
#[cfg(feature = "compiler_utils")]
pub mod utils;
#[cfg(feature = "compiler_utils")]
pub mod warning;