]> git.saurik.com Git - cycript.git/blobdiff - Parser.cpp
Use a single std::istream& to replace file_/data_.
[cycript.git] / Parser.cpp
index 32d3d0a7b969f969da5cafbd428f98291c3bdb5b..f0ad37f51c5b0c110bbc0e2c0a0a9bc33532fc21 100644 (file)
@@ -26,12 +26,9 @@ CYRange DigitRange_    (0x3ff000000000000LLU, 0x000000000000000LLU); // 0-9
 CYRange WordStartRange_(0x000001000000000LLU, 0x7fffffe87fffffeLLU); // A-Za-z_$
 CYRange WordEndRange_  (0x3ff001000000000LLU, 0x7fffffe87fffffeLLU); // A-Za-z_$0-9
 
-CYDriver::CYDriver(const std::string &filename) :
+CYDriver::CYDriver(std::istream &data, const std::string &filename) :
     state_(CYClear),
-    nobrace_(false),
-    data_(NULL),
-    size_(0),
-    file_(NULL),
+    data_(data),
     strict_(false),
     filename_(filename),
     program_(NULL),
@@ -39,6 +36,7 @@ CYDriver::CYDriver(const std::string &filename) :
     context_(NULL),
     mode_(AutoNone)
 {
+    memset(&no_, 0, sizeof(no_));
     in_.push(false);
     ScannerInit();
 }