]>
git.saurik.com Git - cycript.git/blob - ObjectiveC/Output.cpp
1 /* Cycript - Optimizing JavaScript Compiler/Runtime
2 * Copyright (C) 2009-2015 Jay Freeman (saurik)
5 /* GNU Affero General Public License, Version 3 {{{ */
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 #include "Replace.hpp"
23 #include "ObjectiveC/Syntax.hpp"
27 void CYCategory::Output(CYOutput
&out
, CYFlags flags
) const {
28 out
<< "(function($cys,$cyp,$cyc,$cyn,$cyt){";
29 out
<< "$cyp=object_getClass($cys);";
31 if (messages_
!= NULL
)
32 messages_
->Output(out
, true);
34 name_
->ClassName(out
, true);
39 void CYClass::Output(CYOutput
&out
, CYFlags flags
) const {
40 // XXX: I don't necc. need the ()s
41 out
<< "(function($cys,$cyp,$cyc,$cyn,$cyt,$cym){";
42 out
<< "$cyp=object_getClass($cys);";
43 out
<< "$cyc=objc_allocateClassPair($cys,";
45 name_
->ClassName(out
, false);
47 out
<< "$cyq(\"CY$\")";
49 out
<< "$cym=object_getClass($cyc);";
52 if (messages_
!= NULL
)
53 messages_
->Output(out
, false);
54 if (protocols_
!= NULL
) {
59 out
<< "objc_registerClassPair($cyc);";
60 out
<< "return $cyc;";
63 super_
->Output(out
, CYAssign::Precedence_
, CYNoFlags
);
69 void CYClassExpression::Output(CYOutput
&out
, CYFlags flags
) const {
70 CYClass::Output(out
, flags
);
73 void CYClassStatement::Output(CYOutput
&out
, CYFlags flags
) const {
74 CYClass::Output(out
, flags
);
77 void CYField::Output(CYOutput
&out
) const {
80 void CYInstanceLiteral::Output(CYOutput
&out
, CYFlags flags
) const {
82 number_
->Output(out
, CYRight(flags
));
85 void CYMessage::Output(CYOutput
&out
, bool replace
) const {
86 out
<< (instance_
? '-' : '+');
88 CYForEach (parameter
, parameters_
)
89 if (parameter
->tag_
!= NULL
) {
90 out
<< ' ' << *parameter
->tag_
;
91 if (parameter
->name_
!= NULL
)
92 out
<< ':' << *parameter
->name_
;
98 void CYBox::Output(CYOutput
&out
, CYFlags flags
) const {
100 value_
->Output(out
, Precedence(), CYRight(flags
));
103 void CYObjCBlock::Output(CYOutput
&out
, CYFlags flags
) const {
104 // XXX: this is seriously wrong
111 void CYProtocol::Output(CYOutput
&out
) const {
112 name_
->Output(out
, CYAssign::Precedence_
, CYNoFlags
);
114 out
<< ',' << ' ' << *next_
;
117 void CYSelector::Output(CYOutput
&out
, CYFlags flags
) const {
118 out
<< "@selector" << '(' << name_
<< ')';
121 void CYSelectorPart::Output(CYOutput
&out
) const {
128 void CYSend::Output(CYOutput
&out
, CYFlags flags
) const {
129 CYForEach (argument
, arguments_
)
130 if (argument
->name_
!= NULL
) {
131 out
<< ' ' << *argument
->name_
;
132 if (argument
->value_
!= NULL
)
133 out
<< ':' << *argument
->value_
;
137 void CYSendDirect::Output(CYOutput
&out
, CYFlags flags
) const {
139 self_
->Output(out
, CYAssign::Precedence_
, CYNoFlags
);
140 CYSend::Output(out
, flags
);
144 void CYSendSuper::Output(CYOutput
&out
, CYFlags flags
) const {
145 out
<< '[' << "super";
146 CYSend::Output(out
, flags
);