cl-ast: Move AST definition into its own crate

This commit is contained in:
2024-02-29 19:49:50 -06:00
parent 6e1d5af134
commit 1afde9ce35
15 changed files with 29 additions and 19 deletions

View File

@@ -125,7 +125,7 @@ use collectible::Collectible;
pub mod collectible {
use super::Collector;
use conlang::ast::*;
use cl_ast::*;
pub trait Collectible<'code> {
fn collect(&'code self, c: &mut Collector<'code>);
}