slint/sixtyfps_compiler/lib.rs
Olivier Goffart c0a4902240 Rename expressions -> expression_tree
there is already an expressions module in the parser
2020-05-25 15:28:37 +02:00

22 lines
419 B
Rust

/*!
# The SixtyFPS compiler
The different modules tage the source code and transform into data structures
according to the following schema
```text
source code -> parser -> object_tree -> lower -> generator
```
*/
#[cfg(feature = "proc_macro_span")]
extern crate proc_macro;
pub mod diagnostics;
pub mod expression_tree;
pub mod generator;
pub mod lower;
pub mod object_tree;
pub mod parser;
pub mod typeregister;