mirror of
https://github.com/slint-ui/slint.git
synced 2025-09-29 13:24:48 +00:00
18 lines
332 B
Rust
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;
|