This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
huia/huia-compiler/src/lib.rs

19 lines
347 B
Rust
Raw Normal View History

2019-02-22 19:48:05 +13:00
extern crate huia_parser;
extern crate string_interner;
extern crate wrc;
2019-02-22 19:48:05 +13:00
mod class;
2019-02-22 23:08:15 +13:00
mod constant;
2019-02-22 19:48:05 +13:00
mod context;
mod identifier;
mod r#trait;
mod r#type;
mod type_spec;
2019-02-22 19:48:05 +13:00
pub use class::{Class, ClassId};
pub use context::Context;
pub use identifier::Identifier;
pub use r#trait::{Trait, TraitId};
pub use r#type::Type;
pub use type_spec::TypeSpec;