slint/sixtyfps_compiler/lib.rs
2020-05-07 14:39:54 +02:00

18 lines
332 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
```
*/
pub mod diagnostics;
pub mod generator;
pub mod lower;
pub mod object_tree;
pub mod parser;
pub mod typeregister;