]> git.saurik.com Git - cycript.git/blobdiff - Driver.hpp
Flex drove me crazy with "you just got jammed" :/.
[cycript.git] / Driver.hpp
index 1297e14b8ba93ca183ca4e8cdb909ed655dfab97..fbc96d931a53a672fae24c799f7fa2397992c519 100644 (file)
@@ -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 {{{ */
 #include <vector>
 
 #include "Location.hpp"
-#include "Parser.hpp"
-
-enum CYState {
-    CYClear,
-    CYRestricted,
-    CYNewLine
+#include "Options.hpp"
+#include "Pooling.hpp"
+#include "Standard.hpp"
+
+struct CYExpression;
+struct CYScript;
+struct CYWord;
+
+enum CYMark {
+    CYMarkIgnore,
+    CYMarkScript,
+    CYMarkModule,
 };
 
-class CYDriver {
+class _visible CYDriver {
   public:
+    CYPool &pool_;
     void *scanner_;
 
-    CYState state_;
+    std::vector<char> buffer_;
+    bool tail_;
+
     std::stack<bool> in_;
+    std::stack<bool> return_;
+    std::stack<bool> template_;
+    std::stack<bool> yield_;
 
-    struct {
-        bool AtImplementation;
-        bool Function;
-        bool OpenBrace;
-    } no_;
+    bool newline_;
+    bool last_;
+    bool next_;
 
     std::istream &data_;
+    CYMark mark_;
 
+    int debug_;
     bool strict_;
-    bool commented_;
+    bool highlight_;
 
     enum Condition {
         RegExpCondition,
@@ -71,7 +83,7 @@ class CYDriver {
 
     typedef std::vector<Error> Errors;
 
-    CYProgram *program_;
+    CYScript *script_;
     Errors errors_;
 
     bool auto_;
@@ -106,10 +118,12 @@ class CYDriver {
     void ScannerDestroy();
 
   public:
-    CYDriver(std::istream &data, const std::string &filename = "");
+    CYDriver(CYPool &pool, std::istream &data, const std::string &filename = "");
     ~CYDriver();
 
-    Condition GetCondition();
+    bool Parse(CYMark mark = CYMarkScript);
+    void Replace(CYOptions &options);
+
     void SetCondition(Condition condition);
 
     void PushCondition(Condition condition);