Dead end with macros

This commit is contained in:
2023-03-05 19:55:38 +00:00
parent ca23edabe4
commit b9d47c3181
30 changed files with 1518 additions and 332 deletions

View File

@@ -1,6 +1,12 @@
pub mod ast;
pub mod typed;
// pub mod typed;
pub mod literal;
pub mod ast_to_typed;
pub mod ast_to_postmacro;
pub mod get_name;
pub(crate) mod interpreted;
mod postmacro;
mod primitive;
mod path_set;
pub use primitive::Primitive;
pub mod postmacro_to_interpreted;
pub use literal::Literal;