mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
Parse and format inline ingested file imports
This commit is contained in:
parent
42e755677c
commit
4d6e641864
10 changed files with 165 additions and 12 deletions
|
@ -577,6 +577,15 @@ impl<'a> RemoveSpaces<'a> for ValueDef<'a> {
|
|||
alias: alias.remove_spaces(arena),
|
||||
exposed: exposed.remove_spaces(arena),
|
||||
},
|
||||
IngestedFileImport {
|
||||
before_path: _,
|
||||
path,
|
||||
name,
|
||||
} => IngestedFileImport {
|
||||
before_path: &[],
|
||||
path: path.remove_spaces(arena),
|
||||
name: name.remove_spaces(arena),
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue