[decomp] debug (#607)

* [decomp] `debug`

* shut up
This commit is contained in:
ManDude
2021-06-19 19:24:55 +01:00
committed by GitHub
parent 387a394be9
commit 46b83bda2a
39 changed files with 2132 additions and 271 deletions
@@ -50,7 +50,7 @@ Val* Compiler::compile_seval(const goos::Object& form, const goos::Object& rest,
m_goos.eval_with_rewind(o, m_goos.global_environment.as_env());
});
} catch (std::runtime_error& e) {
throw_compiler_error(form, "Error while evaluating GOOS: ", e.what());
throw_compiler_error(form, "Error while evaluating GOOS: {}", e.what());
}
return get_none();
}