logic for driving the script optimization process

This commit is contained in:
Vern Paxson 2021-01-10 14:18:11 -08:00
parent e42b1fa05d
commit e2edb622ac
2 changed files with 159 additions and 1 deletions

View file

@ -52,6 +52,7 @@ public:
ProfileFunc* Profile() { return pf.get(); }
const std::string& SaveFile() { return save_file; }
void SetBody(StmtPtr new_body) { body = std::move(new_body); }
void SetProfile(std::unique_ptr<ProfileFunc> _pf);
void SetSaveFile(std::string _sf) { save_file = std::move(_sf); }