#include "Error.hpp"
#include "String.hpp"
+#include "Execute.hpp"
/* C Strings {{{ */
template <typename Type_>
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());