Compiler performance improvements and error clean-up (#782)

* compiler cleanup and error improvement

* fix test
This commit is contained in:
water111
2021-08-24 22:15:26 -04:00
committed by GitHub
parent e7b9ad5801
commit 7a5562106e
29 changed files with 462 additions and 264 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ void MakeSystem::load_project_file(const std::string& file_path) {
// read the file
auto data = m_goos.reader.read_from_file({file_path});
// interpret it, which will call various handlers.
m_goos.eval(data, m_goos.global_environment.as_env());
m_goos.eval(data, m_goos.global_environment.as_env_ptr());
}
goos::Object MakeSystem::handle_defstep(const goos::Object& form,