]> git.saurik.com Git - cycript.git/blobdiff - Driver.hpp
Transform ECMAScript 6 import as CommonJS require.
[cycript.git] / Driver.hpp
index 769ba26d24d1483b7de0ee6d6e15626b4baac0ac..adb03f20f612c9e864e3a677fbb9d78fed1ac4c2 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 <string>
 #include <vector>
 
-#include "location.hh"
+#include "Location.hpp"
+#include "Options.hpp"
+#include "Pooling.hpp"
+#include "Standard.hpp"
 
-#include "Parser.hpp"
+struct CYClassTail;
+struct CYExpression;
+struct CYScript;
+struct CYWord;
 
-enum CYState {
-    CYClear,
-    CYRestricted,
-    CYNewLine
+enum CYMark {
+    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> super_;
+    std::stack<bool> template_;
+    std::stack<bool> yield_;
+
+    std::stack<CYClassTail *> 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,
     };
@@ -66,13 +79,13 @@ class CYDriver {
 
     struct Error {
         bool warning_;
-        cy::location location_;
+        CYLocation location_;
         std::string message_;
     };
 
     typedef std::vector<Error> Errors;
 
-    CYProgram *program_;
+    CYScript *script_;
     Errors errors_;
 
     bool auto_;
@@ -107,16 +120,19 @@ class CYDriver {
     void ScannerDestroy();
 
   public:
-    CYDriver(std::istream &data, const std::string &filename = "");
+    CYDriver(CYPool &pool, std::streambuf &data, const std::string &filename = "");
     ~CYDriver();
 
-    Condition GetCondition();
+    bool Parse(CYMark mark = CYMarkModule);
+    void Replace(CYOptions &options);
+
+    void SetRegEx(bool equal);
     void SetCondition(Condition condition);
 
     void PushCondition(Condition condition);
     void PopCondition();
 
-    void Warning(const cy::location &location, const char *message);
+    void Warning(const CYLocation &location, const char *message);
 };
 
 #endif/*CYCRIPT_DRIVER_HPP*/