compiler startup speed, decomp options, add some shrub docs (#1187)

This commit is contained in:
water111
2022-02-19 21:31:24 -05:00
committed by GitHub
parent 4a7a297649
commit ff6362d181
4 changed files with 1498 additions and 9 deletions
+2
View File
@@ -74,6 +74,8 @@ void MakeSystem::load_project_file(const std::string& file_path) {
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_ptr());
fmt::print("Loaded project {} with {} steps in {} ms\n", file_path, m_output_to_step.size(),
(int)timer.getMs());
}
goos::Object MakeSystem::handle_defstep(const goos::Object& form,