Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(compiler): Ensure the extension is chopped in the case of module name error #2060

Merged
merged 1 commit into from Mar 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion compiler/src/typed/module_resolution.re
Expand Up @@ -236,11 +236,13 @@ let try_locate_module =
| exception Not_found => error(No_module_file(loc, name, None))
| _ =>
let name = !is_relpath(name) ? no_extension : name;
// The filepath might have come in as `.gr.gr` so we need to chop again
let module_name = chop_suffix(no_extension, ".gr");
error(
No_module_file(
loc,
name,
Some("did you mean \"" ++ no_extension ++ "\"?"),
Some("did you mean \"" ++ module_name ++ "\"?"),
),
);
};
Expand Down