]> git.saurik.com Git - cycript.git/blame - Output.cpp
Add syntax to support C-style typedef assignment.
[cycript.git] / Output.cpp
CommitLineData
b3378a02 1/* Cycript - Optimizing JavaScript Compiler/Runtime
c15969fd 2 * Copyright (C) 2009-2013 Jay Freeman (saurik)
4644480a
JF
3*/
4
c15969fd 5/* GNU General Public License, Version 3 {{{ */
4644480a 6/*
c15969fd
JF
7 * Cycript is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation, either version 3 of the License,
10 * or (at your option) any later version.
4644480a 11 *
c15969fd
JF
12 * Cycript is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
4644480a 16 *
c15969fd 17 * You should have received a copy of the GNU General Public License
b3378a02
JF
18 * along with Cycript. If not, see <http://www.gnu.org/licenses/>.
19**/
4644480a
JF
20/* }}} */
21
520c130f 22#include "cycript.hpp"
5999c315
JF
23#include "Parser.hpp"
24
4afefdd9
JF
25#include <sstream>
26
1fdca2fa
JF
27void CYOutput::Terminate() {
28 out_ << ';';
29 mode_ = NoMode;
30}
31
96a7e5c2 32CYOutput &CYOutput::operator <<(char rhs) {
1fdca2fa
JF
33 if (rhs == ' ' || rhs == '\n')
34 if (pretty_)
35 out_ << rhs;
36 else goto done;
37 else if (rhs == '\t')
38 if (pretty_)
39 for (unsigned i(0); i != indent_; ++i)
40 out_ << " ";
41 else goto done;
320ce753
JF
42 else if (rhs == '\r') {
43 if (right_) {
44 out_ << '\n';
45 right_ = false;
14ec9e00 46 } goto done;
320ce753 47 } else goto work;
1fdca2fa 48
320ce753 49 right_ = true;
1fdca2fa
JF
50 mode_ = NoMode;
51 goto done;
96a7e5c2 52
1fdca2fa 53 work:
320ce753
JF
54 if (mode_ == Terminated && rhs != '}') {
55 right_ = true;
96a7e5c2 56 out_ << ';';
320ce753 57 }
96a7e5c2
JF
58
59 if (rhs == ';') {
60 if (pretty_)
61 goto none;
62 else {
63 mode_ = Terminated;
64 goto done;
65 }
c0bc320e
JF
66 } else if (rhs == '+') {
67 if (mode_ == NoPlus)
68 out_ << ' ';
69 mode_ = NoPlus;
96a7e5c2
JF
70 } else if (rhs == '-') {
71 if (mode_ == NoHyphen)
72 out_ << ' ';
73 mode_ = NoHyphen;
74 } else if (WordEndRange_[rhs]) {
75 if (mode_ == NoLetter)
76 out_ << ' ';
77 mode_ = NoLetter;
78 } else none:
79 mode_ = NoMode;
80
320ce753 81 right_ = true;
96a7e5c2
JF
82 out_ << rhs;
83 done:
84 return *this;
85}
86
87CYOutput &CYOutput::operator <<(const char *rhs) {
88 size_t size(strlen(rhs));
89
90 if (size == 1)
91 return *this << *rhs;
92
93 if (mode_ == Terminated)
94 out_ << ';';
95 else if (
c0bc320e 96 mode_ == NoPlus && *rhs == '+' ||
96a7e5c2
JF
97 mode_ == NoHyphen && *rhs == '-' ||
98 mode_ == NoLetter && WordEndRange_[*rhs]
99 )
100 out_ << ' ';
101
102 if (WordEndRange_[rhs[size - 1]])
103 mode_ = NoLetter;
104 else
105 mode_ = NoMode;
106
320ce753 107 right_ = true;
96a7e5c2
JF
108 out_ << rhs;
109 return *this;
110}
111
652ec1ba 112void CYArgument::Output(CYOutput &out) const {
d35a3b07 113 if (name_ != NULL) {
5999c315 114 out << *name_;
96a7e5c2
JF
115 if (value_ != NULL)
116 out << ':' << ' ';
5999c315 117 }
d35a3b07 118 if (value_ != NULL)
8351aa30 119 value_->Output(out, CYAssign::Precedence_, CYNoFlags);
5999c315 120 if (next_ != NULL) {
96a7e5c2 121 if (next_->name_ == NULL)
11c1cc16 122 out << ',';
96a7e5c2 123 out << ' ' << *next_;
5999c315
JF
124 }
125}
126
652ec1ba 127void CYArray::Output(CYOutput &out, CYFlags flags) const {
96a7e5c2 128 out << '[' << elements_ << ']';
5befe15e
JF
129}
130
652ec1ba 131void CYArrayComprehension::Output(CYOutput &out, CYFlags flags) const {
4644480a 132 out << '[' << *expression_ << ' ' << *comprehensions_ << ']';
75b0a457
JF
133}
134
652ec1ba 135void CYAssignment::Output(CYOutput &out, CYFlags flags) const {
fb98ac0c 136 lhs_->Output(out, Precedence() - 1, CYLeft(flags) | CYNoRightHand);
96a7e5c2 137 out << ' ' << Operator() << ' ';
b09da87b 138 rhs_->Output(out, Precedence(), CYRight(flags));
d35a3b07
JF
139}
140
3b52fd1a
JF
141void CYBlock::Output(CYOutput &out) const {
142 out << '{' << '\n';
143 ++out.indent_;
144 if (statements_ != NULL)
145 statements_->Multiple(out);
146 --out.indent_;
147 out << '\t' << '}';
148}
149
fb98ac0c 150void CYBlock::Output(CYOutput &out, CYFlags flags) const {
3b52fd1a
JF
151 if (statements_ == NULL)
152 out.Terminate();
153 else if (statements_->next_ == NULL)
154 statements_->Single(out, flags);
155 else
156 Output(out);
9e562cfc
JF
157}
158
652ec1ba 159void CYBoolean::Output(CYOutput &out, CYFlags flags) const {
5999c315
JF
160 out << (Value() ? "true" : "false");
161}
162
fb98ac0c 163void CYBreak::Output(CYOutput &out, CYFlags flags) const {
5999c315
JF
164 out << "break";
165 if (label_ != NULL)
166 out << ' ' << *label_;
96a7e5c2 167 out << ';';
5999c315
JF
168}
169
652ec1ba 170void CYCall::Output(CYOutput &out, CYFlags flags) const {
fb98ac0c
JF
171 bool protect((flags & CYNoCall) != 0);
172 if (protect)
173 out << '(';
174 function_->Output(out, Precedence(), protect ? CYNoFlags : flags);
96a7e5c2 175 out << '(' << arguments_ << ')';
fb98ac0c
JF
176 if (protect)
177 out << ')';
5999c315
JF
178}
179
37954781
JF
180namespace cy {
181namespace Syntax {
182
183void Catch::Output(CYOutput &out) const {
3b52fd1a 184 out << ' ' << "catch" << ' ' << '(' << *name_ << ')' << ' ' << code_;
5999c315
JF
185}
186
37954781
JF
187} }
188
320ce753
JF
189void CYComment::Output(CYOutput &out, CYFlags flags) const {
190 out << '\r';
14ec9e00
JF
191 out.out_ << value_;
192 out.right_ = true;
320ce753
JF
193 out << '\r';
194}
195
652ec1ba 196void CYCompound::Output(CYOutput &out, CYFlags flags) const {
e5bc40db
JF
197 if (CYExpression *expression = expressions_)
198 if (CYExpression *next = expression->next_) {
199 expression->Output(out, CYLeft(flags));
200 CYFlags center(CYCenter(flags));
201 while (next != NULL) {
202 expression = next;
96a7e5c2 203 out << ',' << ' ';
e5bc40db
JF
204 next = expression->next_;
205 CYFlags right(next != NULL ? center : CYRight(flags));
206 expression->Output(out, right);
207 }
208 } else
209 expression->Output(out, flags);
210}
211
652ec1ba 212void CYCondition::Output(CYOutput &out, CYFlags flags) const {
b09da87b 213 test_->Output(out, Precedence() - 1, CYLeft(flags));
96a7e5c2 214 out << ' ' << '?' << ' ';
5999c315 215 if (true_ != NULL)
8351aa30 216 true_->Output(out, CYAssign::Precedence_, CYNoFlags);
96a7e5c2 217 out << ' ' << ':' << ' ';
8351aa30 218 false_->Output(out, CYAssign::Precedence_, CYRight(flags));
5999c315
JF
219}
220
fb98ac0c 221void CYContinue::Output(CYOutput &out, CYFlags flags) const {
5999c315
JF
222 out << "continue";
223 if (label_ != NULL)
224 out << ' ' << *label_;
96a7e5c2 225 out << ';';
5999c315
JF
226}
227
652ec1ba 228void CYClause::Output(CYOutput &out) const {
96a7e5c2
JF
229 if (case_ != NULL)
230 out << "case" << ' ' << *case_;
231 else
5999c315 232 out << "default";
1fdca2fa 233 out << ':' << '\n';
3b52fd1a
JF
234 if (statements_ != NULL)
235 statements_->Multiple(out);
96a7e5c2 236 out << next_;
cac61857
JF
237}
238
c8a0500b
JF
239void CYDebugger::Output(CYOutput &out, CYFlags flags) const {
240 out << "debugger" << ';';
241}
242
652ec1ba 243void CYDeclaration::ForIn(CYOutput &out, CYFlags flags) const {
fb98ac0c 244 out << "var";
96a7e5c2 245 Output(out, CYRight(flags));
75b0a457
JF
246}
247
652ec1ba 248void CYDeclaration::Output(CYOutput &out, CYFlags flags) const {
5999c315 249 out << *identifier_;
e013809d 250 //out.out_ << ':' << identifier_->usage_ << '#' << identifier_->offset_;
d35a3b07 251 if (initialiser_ != NULL) {
96a7e5c2 252 out << ' ' << '=' << ' ';
8351aa30 253 initialiser_->Output(out, CYAssign::Precedence_, CYRight(flags));
96a7e5c2 254 }
5999c315
JF
255}
256
15b88a33 257void CYForDeclarations::Output(CYOutput &out, CYFlags flags) const {
fb98ac0c 258 out << "var";
15b88a33 259 Output(out, CYRight(flags));
96a7e5c2
JF
260}
261
262void CYDeclarations::Output(CYOutput &out) const {
263 Output(out, CYNoFlags);
cac61857 264}
d35a3b07 265
652ec1ba 266void CYDeclarations::Output(CYOutput &out, CYFlags flags) const {
5999c315 267 const CYDeclarations *declaration(this);
fb98ac0c 268 bool first(true);
d35a3b07 269
c8a0500b
JF
270 for (;;) {
271 CYDeclarations *next(declaration->next_);
272
273 CYFlags jacks(first ? CYLeft(flags) : next == NULL ? CYRight(flags) : CYCenter(flags));
274 first = false;
275 declaration->declaration_->Output(out, jacks);
276
277 if (next == NULL)
278 break;
279
96a7e5c2 280 out << ',' << ' ';
75b0a457 281 declaration = next;
d35a3b07 282 }
5999c315
JF
283}
284
652ec1ba 285void CYDirectMember::Output(CYOutput &out, CYFlags flags) const {
b38adb44 286 object_->Output(out, Precedence(), CYLeft(flags) | CYNoInteger);
9b5527f0
JF
287 if (const char *word = property_->Word())
288 out << '.' << word;
96a7e5c2
JF
289 else
290 out << '[' << *property_ << ']';
9b5527f0
JF
291}
292
fb98ac0c 293void CYDoWhile::Output(CYOutput &out, CYFlags flags) const {
fb98ac0c 294 out << "do";
d29365ce 295 code_->Single(out, CYCenter(flags));
96a7e5c2 296 out << "while" << ' ' << '(' << *test_ << ')';
5999c315
JF
297}
298
652ec1ba 299void CYElement::Output(CYOutput &out) const {
5999c315 300 if (value_ != NULL)
8351aa30 301 value_->Output(out, CYAssign::Precedence_, CYNoFlags);
11c1cc16 302 if (next_ != NULL || value_ == NULL) {
5999c315 303 out << ',';
96a7e5c2 304 if (next_ != NULL && next_->value_ != NULL)
11c1cc16
JF
305 out << ' ';
306 }
5befe15e
JF
307 if (next_ != NULL)
308 next_->Output(out);
5999c315
JF
309}
310
fb98ac0c 311void CYEmpty::Output(CYOutput &out, CYFlags flags) const {
1fdca2fa 312 out.Terminate();
5999c315
JF
313}
314
fb98ac0c 315void CYExpress::Output(CYOutput &out, CYFlags flags) const {
96a7e5c2
JF
316 expression_->Output(out, flags | CYNoBF);
317 out << ';';
5999c315
JF
318}
319
652ec1ba 320void CYExpression::ClassName(CYOutput &out, bool object) const {
8351aa30 321 Output(out, CYAssign::Precedence_, CYNoFlags);
e5bc40db
JF
322}
323
652ec1ba 324void CYExpression::ForIn(CYOutput &out, CYFlags flags) const {
fb98ac0c 325 Output(out, flags | CYNoRightHand);
d35a3b07
JF
326}
327
96a7e5c2
JF
328void CYExpression::Output(CYOutput &out) const {
329 Output(out, CYNoFlags);
330}
331
652ec1ba 332void CYExpression::Output(CYOutput &out, unsigned precedence, CYFlags flags) const {
96a7e5c2
JF
333 if (precedence < Precedence() || (flags & CYNoRightHand) != 0 && RightHand())
334 out << '(' << *this << ')';
335 else
b09da87b
JF
336 Output(out, flags);
337}
338
a0be43fc
JF
339void CYFatArrow::Output(CYOutput &out, CYFlags flags) const {
340 out << '(' << parameters_ << ')' << ' ' << "=>" << ' ' << code_;
341}
342
b10bd496 343void CYFinally::Output(CYOutput &out) const {
3b52fd1a 344 out << ' ' << "finally" << ' ' << code_;
b10bd496
JF
345}
346
fb98ac0c 347void CYFor::Output(CYOutput &out, CYFlags flags) const {
96a7e5c2 348 out << "for" << ' ' << '(';
5999c315 349 if (initialiser_ != NULL)
15b88a33 350 initialiser_->Output(out, CYNoIn);
1fdca2fa 351 out.Terminate();
e661185c
JF
352 if (test_ != NULL)
353 out << ' ';
96a7e5c2 354 out << test_;
1fdca2fa 355 out.Terminate();
e661185c
JF
356 if (increment_ != NULL)
357 out << ' ';
96a7e5c2 358 out << increment_;
5999c315 359 out << ')';
d29365ce 360 code_->Single(out, CYRight(flags));
5999c315
JF
361}
362
d5618df7 363void CYForOf::Output(CYOutput &out, CYFlags flags) const {
4644480a
JF
364 out << "for" << ' ' << "each" << ' ' << '(';
365 initialiser_->ForIn(out, CYNoIn);
366 out << "in" << *set_ << ')';
367 code_->Single(out, CYRight(flags));
75b0a457
JF
368}
369
d5618df7 370void CYForOfComprehension::Output(CYOutput &out) const {
4644480a 371 out << "for" << ' ' << "each" << ' ' << '(' << *name_ << ' ' << "in" << ' ' << *set_ << ')' << next_;
75b0a457
JF
372}
373
fb98ac0c 374void CYForIn::Output(CYOutput &out, CYFlags flags) const {
96a7e5c2 375 out << "for" << ' ' << '(';
029bc65b
JF
376 if (initialiser_ != NULL)
377 initialiser_->ForIn(out, CYNoIn);
96a7e5c2 378 out << "in" << *set_ << ')';
fb98ac0c 379 code_->Single(out, CYRight(flags));
5999c315
JF
380}
381
4644480a
JF
382void CYForInComprehension::Output(CYOutput &out) const {
383 out << "for" << ' ' << '(' << *name_ << ' ' << "in" << ' ' << *set_ << ')';
75b0a457
JF
384}
385
fb98ac0c 386void CYFunction::Output(CYOutput &out, CYFlags flags) const {
1fdca2fa 387 // XXX: one could imagine using + here to save a byte
fb98ac0c
JF
388 bool protect((flags & CYNoFunction) != 0);
389 if (protect)
390 out << '(';
fb98ac0c
JF
391 out << "function";
392 if (name_ != NULL)
393 out << ' ' << *name_;
1fdca2fa 394 out << '(' << parameters_ << ')';
3b52fd1a 395 out << ' ' << code_;
fb98ac0c
JF
396 if (protect)
397 out << ')';
398}
399
400void CYFunctionExpression::Output(CYOutput &out, CYFlags flags) const {
401 CYFunction::Output(out, flags);
402}
403
404void CYFunctionStatement::Output(CYOutput &out, CYFlags flags) const {
405 CYFunction::Output(out, flags);
b09da87b
JF
406}
407
652ec1ba 408void CYFunctionParameter::Output(CYOutput &out) const {
c8a0500b 409 initialiser_->Output(out, CYNoFlags);
96a7e5c2
JF
410 if (next_ != NULL)
411 out << ',' << ' ' << *next_;
5999c315
JF
412}
413
029bc65b
JF
414const char *CYIdentifier::Word() const {
415 return replace_ == NULL || replace_ == this ? CYWord::Word() : replace_->Word();
416}
417
fb98ac0c
JF
418void CYIf::Output(CYOutput &out, CYFlags flags) const {
419 bool protect(false);
420 if (false_ == NULL && (flags & CYNoDangle) != 0) {
421 protect = true;
422 out << '{';
96a7e5c2 423 }
1fdca2fa
JF
424
425 out << "if" << ' ' << '(' << *test_ << ')';
426
fb98ac0c 427 CYFlags right(protect ? CYNoFlags : CYRight(flags));
d29365ce 428
fb98ac0c 429 CYFlags jacks(CYNoDangle);
96a7e5c2
JF
430 if (false_ == NULL)
431 jacks |= right;
d29365ce
JF
432 else
433 jacks |= protect ? CYNoFlags : CYCenter(flags);
1fdca2fa 434
3b52fd1a 435 true_->Single(out, jacks);
1fdca2fa 436
5999c315 437 if (false_ != NULL) {
e661185c 438 out << '\t' << "else";
96a7e5c2 439 false_->Single(out, right);
5999c315 440 }
1fdca2fa 441
fb98ac0c
JF
442 if (protect)
443 out << '}';
5999c315
JF
444}
445
4644480a
JF
446void CYIfComprehension::Output(CYOutput &out) const {
447 out << "if" << ' ' << '(' << *test_ << ')' << next_;
75b0a457
JF
448}
449
652ec1ba 450void CYIndirectMember::Output(CYOutput &out, CYFlags flags) const {
9b5527f0 451 object_->Output(out, Precedence(), CYLeft(flags));
9b5527f0 452 if (const char *word = property_->Word())
3b52fd1a 453 out << "->" << word;
96a7e5c2 454 else
3b52fd1a 455 out << "->" << '[' << *property_ << ']';
5999c315
JF
456}
457
652ec1ba 458void CYInfix::Output(CYOutput &out, CYFlags flags) const {
b09da87b 459 const char *name(Operator());
d09e527c 460 bool protect((flags & CYNoIn) != 0 && strcmp(name, "in") == 0);
b09da87b
JF
461 if (protect)
462 out << '(';
b09da87b 463 CYFlags left(protect ? CYNoFlags : CYLeft(flags));
b09da87b 464 lhs_->Output(out, Precedence(), left);
96a7e5c2 465 out << ' ' << name << ' ';
b09da87b 466 CYFlags right(protect ? CYNoFlags : CYRight(flags));
b09da87b
JF
467 rhs_->Output(out, Precedence() - 1, right);
468 if (protect)
469 out << ')';
5999c315
JF
470}
471
3b52fd1a
JF
472void CYLabel::Output(CYOutput &out, CYFlags flags) const {
473 out << *name_ << ':' << ' ';
474 statement_->Single(out, CYRight(flags));
475}
476
60097023
JF
477void CYTypedIdentifier::Output(CYOutput &out) const {
478 // XXX: this is clearly wrong
479 out << "XXX";
480}
481
690cf1a8
JF
482void CYLambda::Output(CYOutput &out, CYFlags flags) const {
483 // XXX: this is seriously wrong
484 out << "[](";
485 out << ")->";
486 out << "{";
487 out << "}";
488}
489
60097023
JF
490void CYTypeDefinition::Output(CYOutput &out, CYFlags flags) const {
491 out << "typedef" << *typed_;
492}
493
c8a0500b 494void CYLetStatement::Output(CYOutput &out, CYFlags flags) const {
15b88a33
JF
495 out << "let" << ' ' << '(' << *declarations_ << ')';
496 code_->Single(out, CYRight(flags));
cac61857
JF
497}
498
2eb8215d
JF
499namespace cy {
500namespace Syntax {
501
502void New::Output(CYOutput &out, CYFlags flags) const {
96a7e5c2 503 out << "new" << ' ';
11c1cc16 504 CYFlags jacks(CYNoCall | CYCenter(flags));
11c1cc16 505 constructor_->Output(out, Precedence(), jacks);
96a7e5c2
JF
506 if (arguments_ != NULL)
507 out << '(' << *arguments_ << ')';
5999c315
JF
508}
509
2eb8215d
JF
510} }
511
652ec1ba 512void CYNull::Output(CYOutput &out, CYFlags flags) const {
5999c315
JF
513 CYWord::Output(out);
514}
515
652ec1ba 516void CYNumber::Output(CYOutput &out, CYFlags flags) const {
856b8cd0
JF
517 std::ostringstream str;
518 CYNumerify(str, Value());
9561f209
JF
519 std::string value(str.str());
520 out << value.c_str();
521 // XXX: this should probably also handle hex conversions and exponents
522 if ((flags & CYNoInteger) != 0 && value.find('.') == std::string::npos)
523 out << '.';
5999c315
JF
524}
525
652ec1ba 526void CYNumber::PropertyName(CYOutput &out) const {
fb98ac0c 527 Output(out, CYNoFlags);
e5bc40db
JF
528}
529
652ec1ba 530void CYObject::Output(CYOutput &out, CYFlags flags) const {
b09da87b
JF
531 bool protect((flags & CYNoBrace) != 0);
532 if (protect)
533 out << '(';
c0bc320e
JF
534 out << '{' << '\n';
535 ++out.indent_;
3b52fd1a 536 out << properties_;
c0bc320e
JF
537 --out.indent_;
538 out << '\t' << '}';
b09da87b
JF
539 if (protect)
540 out << ')';
693d501b
JF
541}
542
652ec1ba 543void CYPostfix::Output(CYOutput &out, CYFlags flags) const {
b09da87b 544 lhs_->Output(out, Precedence(), CYLeft(flags));
d35a3b07 545 out << Operator();
5999c315
JF
546}
547
652ec1ba 548void CYPrefix::Output(CYOutput &out, CYFlags flags) const {
1ef7d061 549 const char *name(Operator());
1ef7d061 550 out << name;
96a7e5c2 551 if (Alphabetic())
11c1cc16 552 out << ' ';
96a7e5c2 553 rhs_->Output(out, Precedence(), CYRight(flags));
5999c315
JF
554}
555
3b52fd1a
JF
556void CYProgram::Output(CYOutput &out) const {
557 if (statements_ != NULL)
558 statements_->Multiple(out);
559}
560
652ec1ba 561void CYProperty::Output(CYOutput &out) const {
c0bc320e 562 out << '\t';
e5bc40db 563 name_->PropertyName(out);
96a7e5c2 564 out << ':' << ' ';
8351aa30 565 value_->Output(out, CYAssign::Precedence_, CYNoFlags);
96a7e5c2 566 if (next_ != NULL)
c0bc320e
JF
567 out << ',' << '\n' << *next_;
568 else
569 out << '\n';
5999c315
JF
570}
571
63cd45c9
JF
572void CYRegEx::Output(CYOutput &out, CYFlags flags) const {
573 out << Value();
63cd45c9
JF
574}
575
fb98ac0c 576void CYReturn::Output(CYOutput &out, CYFlags flags) const {
c0bc320e
JF
577 out << "return";
578 if (value_ != NULL)
579 out << ' ' << *value_;
580 out << ';';
5999c315
JF
581}
582
6c093cce
JF
583void CYRubyBlock::Output(CYOutput &out, CYFlags flags) const {
584 call_->Output(out, CYLeft(flags));
585 out << ' ';
586 proc_->Output(out, CYRight(flags));
587}
588
589void CYRubyProc::Output(CYOutput &out, CYFlags flags) const {
590 // XXX: this is not outputting the parameters
591 out << code_;
592}
593
fb98ac0c
JF
594void CYStatement::Multiple(CYOutput &out, CYFlags flags) const {
595 bool first(true);
c2c9f509 596 CYForEach (next, this) {
fb98ac0c 597 bool last(next->next_ == NULL);
7bf4a0cd 598 CYFlags jacks(first ? last ? flags : CYLeft(flags) : last ? CYRight(flags) : CYCenter(flags));
fb98ac0c 599 first = false;
1fdca2fa 600 out << '\t';
fb98ac0c 601 next->Output(out, jacks);
1fdca2fa 602 out << '\n';
fb98ac0c 603 }
5999c315
JF
604}
605
3b52fd1a 606void CYStatement::Single(CYOutput &out, CYFlags flags) const {
0f37eca9
JF
607 if (this == NULL)
608 return out.Terminate();
609
3b52fd1a
JF
610 _assert(next_ == NULL);
611 out << '\n';
612 ++out.indent_;
613 out << '\t';
614 Output(out, flags);
615 out << '\n';
616 --out.indent_;
5999c315
JF
617}
618
652ec1ba 619void CYString::Output(CYOutput &out, CYFlags flags) const {
96a7e5c2 620 std::ostringstream str;
520c130f 621 CYStringify(str, value_, size_);
96a7e5c2 622 out << str.str().c_str();
5999c315
JF
623}
624
652ec1ba 625void CYString::PropertyName(CYOutput &out) const {
e5bc40db
JF
626 if (const char *word = Word())
627 out << word;
628 else
96a7e5c2 629 out << *this;
e5bc40db
JF
630}
631
c0bc320e
JF
632static const char *Reserved_[] = {
633 "false", "null", "true",
634
635 "break", "case", "catch", "continue", "default",
636 "delete", "do", "else", "finally", "for", "function",
637 "if", "in", "instanceof", "new", "return", "switch",
638 "this", "throw", "try", "typeof", "var", "void",
639 "while", "with",
640
641 "debugger", "const",
642
643 "class", "enum", "export", "extends", "import", "super",
644
645 "abstract", "boolean", "byte", "char", "double", "final",
646 "float", "goto", "int", "long", "native", "short",
647 "synchronized", "throws", "transient", "volatile",
648
649 "let", "yield",
650
c0bc320e
JF
651 NULL
652};
653
11c1cc16
JF
654const char *CYString::Word() const {
655 if (size_ == 0 || !WordStartRange_[value_[0]])
656 return NULL;
657 for (size_t i(1); i != size_; ++i)
658 if (!WordEndRange_[value_[i]])
659 return NULL;
660 const char *value(Value());
c0bc320e 661 for (const char **reserved(Reserved_); *reserved != NULL; ++reserved)
11c1cc16
JF
662 if (strcmp(*reserved, value) == 0)
663 return NULL;
664 return value;
665}
666
fb98ac0c 667void CYSwitch::Output(CYOutput &out, CYFlags flags) const {
96a7e5c2
JF
668 out << "switch" << ' ' << '(' << *value_ << ')' << ' ' << '{';
669 out << clauses_;
5999c315
JF
670 out << '}';
671}
672
652ec1ba 673void CYThis::Output(CYOutput &out, CYFlags flags) const {
5999c315
JF
674 CYWord::Output(out);
675}
676
37954781
JF
677namespace cy {
678namespace Syntax {
679
680void Throw::Output(CYOutput &out, CYFlags flags) const {
c0bc320e
JF
681 out << "throw";
682 if (value_ != NULL)
683 out << ' ' << *value_;
684 out << ';';
5999c315
JF
685}
686
37954781 687void Try::Output(CYOutput &out, CYFlags flags) const {
3b52fd1a 688 out << "try" << ' ' << code_ << catch_ << finally_;
5999c315
JF
689}
690
37954781
JF
691} }
692
fb98ac0c 693void CYVar::Output(CYOutput &out, CYFlags flags) const {
fb98ac0c 694 out << "var";
96a7e5c2
JF
695 declarations_->Output(out, flags);
696 out << ';';
cac61857
JF
697}
698
652ec1ba 699void CYVariable::Output(CYOutput &out, CYFlags flags) const {
5999c315
JF
700 out << *name_;
701}
702
fb98ac0c 703void CYWhile::Output(CYOutput &out, CYFlags flags) const {
96a7e5c2 704 out << "while" << '(' << *test_ << ')';
fb98ac0c 705 code_->Single(out, CYRight(flags));
5999c315
JF
706}
707
fb98ac0c 708void CYWith::Output(CYOutput &out, CYFlags flags) const {
96a7e5c2 709 out << "with" << '(' << *scope_ << ')';
fb98ac0c 710 code_->Single(out, CYRight(flags));
5999c315
JF
711}
712
652ec1ba 713void CYWord::ClassName(CYOutput &out, bool object) const {
367eebb1
JF
714 if (object)
715 out << "objc_getClass(";
029bc65b 716 out << '"' << Word() << '"';
367eebb1
JF
717 if (object)
718 out << ')';
e5bc40db
JF
719}
720
652ec1ba 721void CYWord::Output(CYOutput &out) const {
029bc65b
JF
722 out << Word();
723 if (out.options_.verbose_)
724 out.out_ << '@' << this;
5999c315 725}
e5bc40db 726
652ec1ba 727void CYWord::PropertyName(CYOutput &out) const {
e5bc40db
JF
728 Output(out);
729}
029bc65b
JF
730
731const char *CYWord::Word() const {
732 return word_;
733}