]>
git.saurik.com Git - cycript.git/blob - Output.cpp
27b07b0d8f81e84a606a37d0e0d772175b7fc053
8 void CYAddressOf::Output(std::ostream
&out
) const {
13 void CYArgument::Output(std::ostream
&out
) const {
20 value_
->Output(out
, false);
22 if (next_
->name_
== NULL
)
30 void CYArray::Output(std::ostream
&out
) const {
32 if (elements_
!= NULL
)
33 elements_
->Output(out
);
37 void CYAssignment::Output(std::ostream
&out
) const {
38 lhs_
->Output(out
, Precedence() - 1);
40 rhs_
->Output(out
, Precedence());
43 void CYBoolean::Output(std::ostream
&out
) const {
44 out
<< (Value() ? "true" : "false");
47 void CYBreak::Output(std::ostream
&out
) const {
50 out
<< ' ' << *label_
;
54 void CYCall::Output(std::ostream
&out
) const {
55 function_
->Output(out
, 2);
57 if (arguments_
!= NULL
)
58 arguments_
->Output(out
);
62 void CYCatch::Output(std::ostream
&out
) const {
63 out
<< "catch(" << *name_
<< ')';
64 code_
->Output(out
, true);
67 void CYCondition::Output(std::ostream
&out
) const {
68 test_
->Output(out
, Precedence() - 1);
71 true_
->Output(out
, CYPA
);
73 false_
->Output(out
, CYPA
);
76 void CYContinue::Output(std::ostream
&out
) const {
79 out
<< ' ' << *label_
;
83 void CYClause::Output(std::ostream
&out
) const {
91 code_
->Output(out
, false);
95 void CYDeclaration::Part(std::ostream
&out
) const {
100 void CYDeclaration::Output(std::ostream
&out
) const {
102 if (initialiser_
!= NULL
) {
104 initialiser_
->Output(out
, CYPA
);
108 void CYDeclarations::Part(std::ostream
&out
) const {
111 const CYDeclarations
*declaration(this);
113 out
<< *declaration
->declaration_
;
114 declaration
= declaration
->next_
;
116 if (declaration
!= NULL
) {
122 void CYDeclarations::Output(std::ostream
&out
) const {
127 void CYDoWhile::Output(std::ostream
&out
) const {
129 code_
->Output(out
, false);
135 void CYElement::Output(std::ostream
&out
) const {
137 value_
->Output(out
, CYPA
);
138 if (next_
!= NULL
|| value_
== NULL
)
144 void CYEmpty::Output(std::ostream
&out
) const {
148 void CYEmpty::Output(std::ostream
&out
, bool block
) const {
150 CYSource::Output(out
, block
);
155 void CYExpress::Output(std::ostream
&out
) const {
156 expression_
->Output(out
);
160 void CYExpression::Part(std::ostream
&out
) const {
161 // XXX: this should notice "in" expressions
162 // XXX: this should handle LeftHandSideExpression
166 void CYCompound::Output(std::ostream
&out
) const {
167 if (CYExpression
*expression
= expressions_
)
169 expression
->Output(out
);
170 expression
= expression
->next_
;
171 if (expression
== NULL
)
177 void CYExpression::Output(std::ostream
&out
, unsigned precedence
) const {
178 bool protect(precedence
< Precedence());
186 void CYFor::Output(std::ostream
&out
) const {
188 if (initialiser_
!= NULL
)
189 initialiser_
->Part(out
);
194 if (increment_
!= NULL
)
195 increment_
->Output(out
);
197 code_
->Output(out
, false);
200 void CYForIn::Output(std::ostream
&out
) const {
202 initialiser_
->Part(out
);
206 code_
->Output(out
, false);
209 void CYFunction::Output(std::ostream
&out
) const {
210 CYLambda::Output(out
);
213 void CYIf::Output(std::ostream
&out
) const {
217 true_
->Output(out
, true);
218 if (false_
!= NULL
) {
220 false_
->Output(out
, false);
224 void CYIndirect::Output(std::ostream
&out
) const {
225 rhs_
->Output(out
, 1);
229 void CYInfix::Output(std::ostream
&out
) const {
230 lhs_
->Output(out
, Precedence());
232 rhs_
->Output(out
, Precedence() - 1);
235 void CYLambda::Output(std::ostream
&out
) const {
238 out
<< ' ' << *name_
;
240 if (parameters_
!= NULL
)
243 body_
->Output(out
, true);
246 void CYMember::Output(std::ostream
&out
) const {
247 object_
->Output(out
, Precedence());
249 property_
->Output(out
);
253 void CYMessage::Output(std::ostream
&out
) const {
254 out
<< "objc_msgSend(";
255 self_
->Output(out
, CYPA
);
257 for (CYArgument
*argument(arguments_
); argument
!= NULL
; argument
= argument
->next_
)
258 if (argument
->name_
!= NULL
) {
259 out
<< *argument
->name_
;
260 if (argument
->value_
!= NULL
)
264 for (CYArgument
*argument(arguments_
); argument
!= NULL
; argument
= argument
->next_
)
265 if (argument
->value_
!= NULL
) {
267 argument
->value_
->Output(out
, CYPA
);
272 void CYNew::Output(std::ostream
&out
) const {
274 // XXX: I don't /always/ need this character
276 constructor_
->Output(out
, Precedence());
278 if (arguments_
!= NULL
)
279 arguments_
->Output(out
);
283 void CYNull::Output(std::ostream
&out
) const {
287 void CYNumber::Output(std::ostream
&out
) const {
288 // XXX: this is not a useful formatting
292 void CYObject::Output(std::ostream
&out
) const {
294 if (property_
!= NULL
)
295 property_
->Output(out
);
299 void CYParameter::Output(std::ostream
&out
) const {
307 void CYPostfix::Output(std::ostream
&out
) const {
308 lhs_
->Output(out
, Precedence());
312 void CYPrefix::Output(std::ostream
&out
) const {
314 rhs_
->Output(out
, Precedence());
317 void CYProperty::Output(std::ostream
&out
) const {
318 out
<< *name_
<< ':';
319 value_
->Output(out
, CYPA
);
326 void CYReturn::Output(std::ostream
&out
) const {
328 if (value_
!= NULL
) {
335 void CYSelector::Output(std::ostream
&out
) const {
342 void CYSelectorPart::Output(std::ostream
&out
) const {
351 void CYSource::Show(std::ostream
&out
) const {
352 for (const CYSource
*next(this); next
!= NULL
; next
= next
->next_
)
353 next
->Output(out
, false);
356 void CYSource::Output(std::ostream
&out
, bool block
) const {
357 if (!block
&& next_
== NULL
)
366 void CYString::Output(std::ostream
&out
) const {
368 for (const char *value(value_
), *end(value_
+ size_
); value
!= end
; ++value
)
370 case '"': out
<< "\\\""; break;
371 case '\\': out
<< "\\\\"; break;
372 case '\b': out
<< "\\b"; break;
373 case '\f': out
<< "\\f"; break;
374 case '\n': out
<< "\\n"; break;
375 case '\r': out
<< "\\r"; break;
376 case '\t': out
<< "\\t"; break;
377 case '\v': out
<< "\\v"; break;
380 if (*value
< 0x20 || *value
>= 0x7f)
381 out
<< "\\x" << std::setbase(16) << std::setw(2) << std::setfill('0') << unsigned(*value
);
388 void CYSwitch::Output(std::ostream
&out
) const {
392 if (clauses_
!= NULL
)
397 void CYThis::Output(std::ostream
&out
) const {
401 void CYThrow::Output(std::ostream
&out
) const {
403 if (value_
!= NULL
) {
410 void CYTry::Output(std::ostream
&out
) const {
412 try_
->Output(out
, true);
415 if (finally_
!= NULL
) {
417 finally_
->Output(out
, true);
421 void CYVariable::Output(std::ostream
&out
) const {
425 void CYWhile::Output(std::ostream
&out
) const {
429 code_
->Output(out
, false);
432 void CYWith::Output(std::ostream
&out
) const {
436 code_
->Output(out
, false);
439 void CYWord::Output(std::ostream
&out
) const {