X-Git-Url: https://git.saurik.com/cycript.git/blobdiff_plain/d9c911529b1480684bb8b6280410f2d09c8525a1..2c4a8bb6222b88ff96fbf25372179646ce15f706:/Driver.hpp diff --git a/Driver.hpp b/Driver.hpp index cd39cfb..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 {{{ */ @@ -29,35 +29,49 @@ #include #include "Location.hpp" -#include "Parser.hpp" - -enum CYState { - CYClear, - CYRestricted, - CYNewLine +#include "Options.hpp" +#include "Pooling.hpp" +#include "Standard.hpp" + +struct CYClassTail; +struct CYExpression; +struct CYScript; +struct CYWord; + +enum CYMark { + CYMarkScript, + CYMarkModule, + CYMarkExpression, }; class _visible CYDriver { public: + CYPool &pool_; void *scanner_; - CYState state_; + std::vector buffer_; + bool tail_; + std::stack in_; + std::stack return_; + std::stack super_; + std::stack template_; + std::stack yield_; + + std::stack class_; - struct { - bool AtImplementation; - bool Function; - bool OpenBrace; - } no_; + CYMark mark_; + int hold_; + bool newline_; + bool last_; - std::istream &data_; + std::streambuf &data_; int debug_; bool strict_; - bool commented_; + bool highlight_; enum Condition { - RegExpCondition, XMLContentCondition, XMLTagCondition, }; @@ -72,7 +86,7 @@ class _visible CYDriver { typedef std::vector Errors; - CYProgram *program_; + CYScript *script_; Errors errors_; bool auto_; @@ -99,7 +113,10 @@ class _visible CYDriver { AutoPrimary, AutoDirect, AutoIndirect, - AutoMessage + AutoMessage, + AutoResolve, + AutoStruct, + AutoEnum, } mode_; private: @@ -107,13 +124,13 @@ class _visible CYDriver { void ScannerDestroy(); public: - CYDriver(std::istream &data, const std::string &filename = ""); + CYDriver(CYPool &pool, std::streambuf &data, const std::string &filename = ""); ~CYDriver(); - bool Parse(CYPool &pool); - void Replace(CYPool &pool, CYOptions &options); + bool Parse(CYMark mark = CYMarkModule); + void Replace(CYOptions &options); - Condition GetCondition(); + void SetRegEx(bool equal); void SetCondition(Condition condition); void PushCondition(Condition condition);