]> git.saurik.com Git - cycript.git/blobdiff - Driver.hpp
Stub all of ECMAScript 6, but leave unimplemented.
[cycript.git] / Driver.hpp
index 5c330e794250de64a04aa64ea25eadb48f120252..0df39d7dd9242a49f2500b3930a2810daabf3753 100644 (file)
 #include "Location.hpp"
 #include "Parser.hpp"
 
-enum CYState {
-    CYClear,
-    CYRestricted,
-    CYNewLine
+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 +77,7 @@ class CYDriver {
 
     typedef std::vector<Error> Errors;
 
-    CYProgram *program_;
+    CYScript *script_;
     Errors errors_;
 
     bool auto_;
@@ -106,10 +112,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);