Skip to content

Commit

Permalink
tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Nov 22, 2023
1 parent 1bc3f54 commit 8327ba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/compiler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ impl Compiler {
paths.push(root.into());

while let Some(current) = paths.pop() {
let (relative, src) = loader.load(&root, &current)?;
let (relative, src) = loader.load(root, &current)?;
let tokens = Lexer::lex(relative, src)?;
let mut ast = Parser::parse(&tokens)?;

Expand Down

0 comments on commit 8327ba1

Please sign in to comment.