X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/ec18682d83264996954ab6473ea3d342ac8affc5..5f6902c29e9bba2538e729694ec7c8ced38bf9ec:/Driver.hpp diff --git a/Driver.hpp b/Driver.hpp index 634177a..efd2bc6 100644 --- a/Driver.hpp +++ b/Driver.hpp @@ -29,7 +29,20 @@ #include #include "Location.hpp" -#include "Parser.hpp" +#include "Options.hpp" +#include "Pooling.hpp" +#include "Standard.hpp" + +struct CYClassTail; +struct CYExpression; +struct CYScript; +struct CYWord; + +enum CYMark { + CYMarkIgnore, + CYMarkScript, + CYMarkModule, +}; class _visible CYDriver { public: @@ -40,26 +53,25 @@ class _visible CYDriver { bool tail_; std::stack in_; + std::stack return_; + std::stack super_; std::stack template_; + std::stack yield_; + + std::stack class_; bool newline_; bool last_; - - struct { - bool Class; - bool Function; - bool OpenBrace; - bool NewLine; - } no_; + bool next_; std::istream &data_; + CYMark mark_; int debug_; bool strict_; bool highlight_; enum Condition { - RegExpCondition, XMLContentCondition, XMLTagCondition, }; @@ -112,9 +124,10 @@ class _visible CYDriver { CYDriver(CYPool &pool, std::istream &data, const std::string &filename = ""); ~CYDriver(); - bool Parse(); + bool Parse(CYMark mark = CYMarkScript); void Replace(CYOptions &options); + void SetRegEx(bool equal); void SetCondition(Condition condition); void PushCondition(Condition condition);