X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/98711170da204fa86f2889672770c6a3feb4c4db..1ed581bbd2ab6950c7edc001bf565a3ebc7c86f0:/Driver.hpp?ds=sidebyside diff --git a/Driver.hpp b/Driver.hpp index efd2bc6..b4f1c1b 100644 --- a/Driver.hpp +++ b/Driver.hpp @@ -1,5 +1,5 @@ -/* Cycript - Optimizing JavaScript Compiler/Runtime - * Copyright (C) 2009-2015 Jay Freeman (saurik) +/* Cycript - The Truly Universal Scripting Language + * Copyright (C) 2009-2016 Jay Freeman (saurik) */ /* GNU Affero General Public License, Version 3 {{{ */ @@ -39,9 +39,9 @@ struct CYScript; struct CYWord; enum CYMark { - CYMarkIgnore, CYMarkScript, CYMarkModule, + CYMarkExpression, }; class _visible CYDriver { @@ -60,12 +60,12 @@ class _visible CYDriver { std::stack class_; + CYMark mark_; + int hold_; bool newline_; bool last_; - bool next_; - std::istream &data_; - CYMark mark_; + std::streambuf &data_; int debug_; bool strict_; @@ -113,7 +113,10 @@ class _visible CYDriver { AutoPrimary, AutoDirect, AutoIndirect, - AutoMessage + AutoMessage, + AutoResolve, + AutoStruct, + AutoEnum, } mode_; private: @@ -121,10 +124,10 @@ class _visible CYDriver { void ScannerDestroy(); public: - CYDriver(CYPool &pool, std::istream &data, const std::string &filename = ""); + CYDriver(CYPool &pool, std::streambuf &data, const std::string &filename = ""); ~CYDriver(); - bool Parse(CYMark mark = CYMarkScript); + bool Parse(CYMark mark = CYMarkModule); void Replace(CYOptions &options); void SetRegEx(bool equal);