aboutsummaryrefslogtreecommitdiff
path: root/guests_macro/Cargo.toml
Commit message (Collapse)AuthorAgeFilesLines
* feat(guests_macro): Replace parse_fn mod with structKamen Mladenov2025-04-071-0/+3
| | | | | | | | | | | The old method of having functions for every parsing action of a function definition produced messy results. We're replacing it with a struct which will hold a wide assortment of parsed values. This makes the interface much sleaker with only a minor increase in code. The downside is a lot of data gets repeated, however since this struct will only be used in macros, i.e. compile-time, that doesn't matter too much.
* docs(guests_macro): Add detailed documentation commentsKamen Mladenov2025-02-101-0/+1
|
* feat(guests_macro): Add initial implementationKamen Mladenov2025-01-091-0/+7