X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/58afc6aaca119c6b7b9ac5d91e3c6ee28dbd6fda..09e4db6773d6734c8c6e4de86fba0a0e4540b9aa:/Driver.cpp diff --git a/Driver.cpp b/Driver.cpp index 46317c5..5f3ffa1 100644 --- a/Driver.cpp +++ b/Driver.cpp @@ -1,5 +1,5 @@ /* Cycript - Optimizing JavaScript Compiler/Runtime - * Copyright (C) 2009-2014 Jay Freeman (saurik) + * Copyright (C) 2009-2015 Jay Freeman (saurik) */ /* GNU Affero General Public License, Version 3 {{{ */ @@ -22,9 +22,11 @@ #include "Cycript.tab.hh" #include "Driver.hpp" -CYDriver::CYDriver(std::istream &data, const std::string &filename) : +CYDriver::CYDriver(CYPool &pool, std::istream &data, const std::string &filename) : + pool_(pool), state_(CYClear), data_(data), + debug_(0), strict_(false), commented_(false), filename_(filename), @@ -42,6 +44,21 @@ CYDriver::~CYDriver() { ScannerDestroy(); } +bool CYDriver::Parse() { + CYLocal local(&pool_); + cy::parser parser(*this); +#ifdef YYDEBUG + parser.set_debug_level(debug_); +#endif + return parser.parse() != 0; +} + +void CYDriver::Replace(CYOptions &options) { + CYLocal local(&pool_); + CYContext context(options); + program_->Replace(context); +} + void CYDriver::Warning(const cy::parser::location_type &location, const char *message) { if (!strict_) return;