]> git.saurik.com Git - cycript.git/blobdiff - Replace.cpp
Fixed some CYInitialize issues noticed back on the iPhone.
[cycript.git] / Replace.cpp
index df67f44ad229f7cfb2b9f779266cefc2249f41ec..80391180ecb1a5556625a203aae79ac043fba287 100644 (file)
@@ -1,4 +1,4 @@
-/* Cycript - Remove Execution Server and Disassembler
+/* Cycript - Inlining/Optimizing JavaScript Compiler
  * Copyright (C) 2009  Jay Freeman (saurik)
 */
 
@@ -134,6 +134,10 @@ void CYClause::Replace(CYContext &context) { $T()
     next_->Replace(context);
 }
 
+CYStatement *CYComment::Replace(CYContext &context) {
+    return NULL;
+}
+
 CYExpression *CYCompound::Replace(CYContext &context) {
     expressions_ = expressions_->ReplaceAll(context);
     return NULL;