#include "cycript.hpp"
#include "Pooling.hpp"
+#include "Context.hpp"
#include <sys/mman.h>
if (parser.parse() != 0 || !driver.errors_.empty())
return;
- CYContext context(driver.pool_);
+ CYOptions options;
+ CYContext context(driver.pool_, options);
driver.program_->Replace(context);
std::ostringstream str;
- CYOutput out(str);
+ CYOutput out(str, options);
out << *driver.program_;
std::string code(str.str());