]> git.saurik.com Git - cycript.git/blobdiff - Parser.cpp
Allow Type objects to have associated identifiers.
[cycript.git] / Parser.cpp
index f2d3ad14d42e0171b618de80fd31a7821f0ed3a5..09aaf7a93d26815f087ad81a347b31a4ccf01655 100644 (file)
@@ -26,12 +26,11 @@ 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),
-    data_(NULL),
-    size_(0),
-    file_(NULL),
+    data_(data),
     strict_(false),
+    commented_(false),
     filename_(filename),
     program_(NULL),
     auto_(false),