separate typed and untyped ASTs

This commit is contained in:
Romain Paquet 2023-10-16 22:22:10 +02:00
parent 91148b1a20
commit 86d4f7fffb
14 changed files with 512 additions and 262 deletions

View file

@ -4,7 +4,7 @@ mod typing;
use clap::{Parser, Subcommand};
use crate::ast::module::Module;
use crate::ast::untyped::module::Module;
/// Experimental compiler for lila
#[derive(Parser, Debug)]