Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
garritfra committed Aug 19, 2024
1 parent b3e8e52 commit fe85c3a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/builder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,7 @@ impl Builder {
file.read_to_string(&mut contents)
.expect("Could not read file");
let tokens = lexer::tokenize(&contents)?;
let module = parser::parse(
tokens,
Some(contents)
)?;
let module = parser::parse(tokens, Some(contents))?;
for import in &module.imports {
// Prevent circular imports
if seen.contains(import) {
Expand Down

0 comments on commit fe85c3a

Please sign in to comment.