]> git.saurik.com Git - cycript.git/blobdiff - ObjectiveC/Output.cpp
Repair support for compiling without Objective-C.
[cycript.git] / ObjectiveC / Output.cpp
index d67971fa241dcefe81d8ab3235c3323a9ab40d02..203a432992fe9b448f3a591754b743b3d6591577 100644 (file)
@@ -77,10 +77,6 @@ void CYClassStatement::Output(CYOutput &out, CYFlags flags) const {
 void CYField::Output(CYOutput &out) const {
 }
 
-void CYImport::Output(CYOutput &out, CYFlags flags) const {
-    out << "@import";
-}
-
 void CYInstanceLiteral::Output(CYOutput &out, CYFlags flags) const {
     out << '#';
     number_->Output(out, CYRight(flags));
@@ -99,12 +95,6 @@ void CYMessage::Output(CYOutput &out, bool replace) const {
     out << code_;
 }
 
-void CYModule::Output(CYOutput &out) const {
-    out << part_;
-    if (next_ != NULL)
-        out << '.' << next_;
-}
-
 void CYBox::Output(CYOutput &out, CYFlags flags) const {
     out << '@';
     value_->Output(out, Precedence(), CYRight(flags));