basic working

compiling, but still missing positions from expression errors
This commit is contained in:
faldor20 2024-12-11 22:36:14 +10:00
parent 146710a129
commit 81f2095e61
No known key found for this signature in database
GPG key ID: F2216079B890CD57
14 changed files with 192 additions and 49 deletions

View file

@ -674,7 +674,7 @@ pub fn load_module_for_docs(filename: PathBuf) -> LoadedModule {
load_config,
) {
Ok(loaded) => loaded,
Err(LoadingProblem::FormattedReport(report)) => {
Err(LoadingProblem::FormattedReport(report,_)) => {
eprintln!("{report}");
std::process::exit(1);
}