Report space problem in import

This commit is contained in:
Agus Zubiaga 2024-05-06 20:26:07 -03:00
parent 520dc389f3
commit 233310cabf
No known key found for this signature in database

View file

@ -1452,7 +1452,9 @@ fn to_import_report<'a>(
use roc_parse::parser::EImport::*;
match parse_problem {
Annotation(ann_problem, pos) => to_type_report(alloc, lines, filename, ann_problem, *pos),
Annotation(problem, pos) => to_type_report(alloc, lines, filename, problem, *pos),
Space(problem, pos) => to_space_report(alloc, lines, filename, problem, *pos),
_ => todo!(),
}
}