This commit is contained in:
2026-04-11 15:21:03 -04:00
parent 229b026573
commit 2582e8c87e
15 changed files with 301 additions and 199 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ pub use id::*;
pub use parse::*;
impl Nodes {
pub fn parse_root(path: &str, output: &mut CompilerOutput) -> Option<(Self, Id<Module>)> {
pub fn parse_root(path: &str, output: &mut CompilerOutput) -> Option<(Self, Id<Body>)> {
let root_code = match std::fs::read_to_string(path) {
Ok(code) => code,
Err(err) => {