]> git.saurik.com Git - cycript.git/blame - Output.cpp
I should include built config.h.in for other users.
[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
c8a0500b 477void CYLetStatement::Output(CYOutput &out, CYFlags flags) const {
15b88a33
JF
478 out << "let" << ' ' << '(' << *declarations_ << ')';
479 code_->Single(out, CYRight(flags));
cac61857
JF
480}
481
2eb8215d
JF
482namespace cy {
483namespace Syntax {
484
485void New::Output(CYOutput &out, CYFlags flags) const {
96a7e5c2 486 out << "new" << ' ';
11c1cc16 487 CYFlags jacks(CYNoCall | CYCenter(flags));
11c1cc16 488 constructor_->Output(out, Precedence(), jacks);
96a7e5c2
JF
489 if (arguments_ != NULL)
490 out << '(' << *arguments_ << ')';
5999c315
JF
491}
492
2eb8215d
JF
493} }
494
652ec1ba 495void CYNull::Output(CYOutput &out, CYFlags flags) const {
5999c315
JF
496 CYWord::Output(out);
497}
498
652ec1ba 499void CYNumber::Output(CYOutput &out, CYFlags flags) const {
856b8cd0
JF
500 std::ostringstream str;
501 CYNumerify(str, Value());
9561f209
JF
502 std::string value(str.str());
503 out << value.c_str();
504 // XXX: this should probably also handle hex conversions and exponents
505 if ((flags & CYNoInteger) != 0 && value.find('.') == std::string::npos)
506 out << '.';
5999c315
JF
507}
508
652ec1ba 509void CYNumber::PropertyName(CYOutput &out) const {
fb98ac0c 510 Output(out, CYNoFlags);
e5bc40db
JF
511}
512
652ec1ba 513void CYObject::Output(CYOutput &out, CYFlags flags) const {
b09da87b
JF
514 bool protect((flags & CYNoBrace) != 0);
515 if (protect)
516 out << '(';
c0bc320e
JF
517 out << '{' << '\n';
518 ++out.indent_;
3b52fd1a 519 out << properties_;
c0bc320e
JF
520 --out.indent_;
521 out << '\t' << '}';
b09da87b
JF
522 if (protect)
523 out << ')';
693d501b
JF
524}
525
652ec1ba 526void CYPostfix::Output(CYOutput &out, CYFlags flags) const {
b09da87b 527 lhs_->Output(out, Precedence(), CYLeft(flags));
d35a3b07 528 out << Operator();
5999c315
JF
529}
530
652ec1ba 531void CYPrefix::Output(CYOutput &out, CYFlags flags) const {
1ef7d061 532 const char *name(Operator());
1ef7d061 533 out << name;
96a7e5c2 534 if (Alphabetic())
11c1cc16 535 out << ' ';
96a7e5c2 536 rhs_->Output(out, Precedence(), CYRight(flags));
5999c315
JF
537}
538
3b52fd1a
JF
539void CYProgram::Output(CYOutput &out) const {
540 if (statements_ != NULL)
541 statements_->Multiple(out);
542}
543
652ec1ba 544void CYProperty::Output(CYOutput &out) const {
c0bc320e 545 out << '\t';
e5bc40db 546 name_->PropertyName(out);
96a7e5c2 547 out << ':' << ' ';
8351aa30 548 value_->Output(out, CYAssign::Precedence_, CYNoFlags);
96a7e5c2 549 if (next_ != NULL)
c0bc320e
JF
550 out << ',' << '\n' << *next_;
551 else
552 out << '\n';
5999c315
JF
553}
554
63cd45c9
JF
555void CYRegEx::Output(CYOutput &out, CYFlags flags) const {
556 out << Value();
63cd45c9
JF
557}
558
fb98ac0c 559void CYReturn::Output(CYOutput &out, CYFlags flags) const {
c0bc320e
JF
560 out << "return";
561 if (value_ != NULL)
562 out << ' ' << *value_;
563 out << ';';
5999c315
JF
564}
565
6c093cce
JF
566void CYRubyBlock::Output(CYOutput &out, CYFlags flags) const {
567 call_->Output(out, CYLeft(flags));
568 out << ' ';
569 proc_->Output(out, CYRight(flags));
570}
571
572void CYRubyProc::Output(CYOutput &out, CYFlags flags) const {
573 // XXX: this is not outputting the parameters
574 out << code_;
575}
576
fb98ac0c
JF
577void CYStatement::Multiple(CYOutput &out, CYFlags flags) const {
578 bool first(true);
c2c9f509 579 CYForEach (next, this) {
fb98ac0c 580 bool last(next->next_ == NULL);
7bf4a0cd 581 CYFlags jacks(first ? last ? flags : CYLeft(flags) : last ? CYRight(flags) : CYCenter(flags));
fb98ac0c 582 first = false;
1fdca2fa 583 out << '\t';
fb98ac0c 584 next->Output(out, jacks);
1fdca2fa 585 out << '\n';
fb98ac0c 586 }
5999c315
JF
587}
588
3b52fd1a 589void CYStatement::Single(CYOutput &out, CYFlags flags) const {
0f37eca9
JF
590 if (this == NULL)
591 return out.Terminate();
592
3b52fd1a
JF
593 _assert(next_ == NULL);
594 out << '\n';
595 ++out.indent_;
596 out << '\t';
597 Output(out, flags);
598 out << '\n';
599 --out.indent_;
5999c315
JF
600}
601
652ec1ba 602void CYString::Output(CYOutput &out, CYFlags flags) const {
96a7e5c2 603 std::ostringstream str;
520c130f 604 CYStringify(str, value_, size_);
96a7e5c2 605 out << str.str().c_str();
5999c315
JF
606}
607
652ec1ba 608void CYString::PropertyName(CYOutput &out) const {
e5bc40db
JF
609 if (const char *word = Word())
610 out << word;
611 else
96a7e5c2 612 out << *this;
e5bc40db
JF
613}
614
c0bc320e
JF
615static const char *Reserved_[] = {
616 "false", "null", "true",
617
618 "break", "case", "catch", "continue", "default",
619 "delete", "do", "else", "finally", "for", "function",
620 "if", "in", "instanceof", "new", "return", "switch",
621 "this", "throw", "try", "typeof", "var", "void",
622 "while", "with",
623
624 "debugger", "const",
625
626 "class", "enum", "export", "extends", "import", "super",
627
628 "abstract", "boolean", "byte", "char", "double", "final",
629 "float", "goto", "int", "long", "native", "short",
630 "synchronized", "throws", "transient", "volatile",
631
632 "let", "yield",
633
c0bc320e
JF
634 NULL
635};
636
11c1cc16
JF
637const char *CYString::Word() const {
638 if (size_ == 0 || !WordStartRange_[value_[0]])
639 return NULL;
640 for (size_t i(1); i != size_; ++i)
641 if (!WordEndRange_[value_[i]])
642 return NULL;
643 const char *value(Value());
c0bc320e 644 for (const char **reserved(Reserved_); *reserved != NULL; ++reserved)
11c1cc16
JF
645 if (strcmp(*reserved, value) == 0)
646 return NULL;
647 return value;
648}
649
fb98ac0c 650void CYSwitch::Output(CYOutput &out, CYFlags flags) const {
96a7e5c2
JF
651 out << "switch" << ' ' << '(' << *value_ << ')' << ' ' << '{';
652 out << clauses_;
5999c315
JF
653 out << '}';
654}
655
652ec1ba 656void CYThis::Output(CYOutput &out, CYFlags flags) const {
5999c315
JF
657 CYWord::Output(out);
658}
659
37954781
JF
660namespace cy {
661namespace Syntax {
662
663void Throw::Output(CYOutput &out, CYFlags flags) const {
c0bc320e
JF
664 out << "throw";
665 if (value_ != NULL)
666 out << ' ' << *value_;
667 out << ';';
5999c315
JF
668}
669
37954781 670void Try::Output(CYOutput &out, CYFlags flags) const {
3b52fd1a 671 out << "try" << ' ' << code_ << catch_ << finally_;
5999c315
JF
672}
673
37954781
JF
674} }
675
fb98ac0c 676void CYVar::Output(CYOutput &out, CYFlags flags) const {
fb98ac0c 677 out << "var";
96a7e5c2
JF
678 declarations_->Output(out, flags);
679 out << ';';
cac61857
JF
680}
681
652ec1ba 682void CYVariable::Output(CYOutput &out, CYFlags flags) const {
5999c315
JF
683 out << *name_;
684}
685
fb98ac0c 686void CYWhile::Output(CYOutput &out, CYFlags flags) const {
96a7e5c2 687 out << "while" << '(' << *test_ << ')';
fb98ac0c 688 code_->Single(out, CYRight(flags));
5999c315
JF
689}
690
fb98ac0c 691void CYWith::Output(CYOutput &out, CYFlags flags) const {
96a7e5c2 692 out << "with" << '(' << *scope_ << ')';
fb98ac0c 693 code_->Single(out, CYRight(flags));
5999c315
JF
694}
695
652ec1ba 696void CYWord::ClassName(CYOutput &out, bool object) const {
367eebb1
JF
697 if (object)
698 out << "objc_getClass(";
029bc65b 699 out << '"' << Word() << '"';
367eebb1
JF
700 if (object)
701 out << ')';
e5bc40db
JF
702}
703
652ec1ba 704void CYWord::Output(CYOutput &out) const {
029bc65b
JF
705 out << Word();
706 if (out.options_.verbose_)
707 out.out_ << '@' << this;
5999c315 708}
e5bc40db 709
652ec1ba 710void CYWord::PropertyName(CYOutput &out) const {
e5bc40db
JF
711 Output(out);
712}
029bc65b
JF
713
714const char *CYWord::Word() const {
715 return word_;
716}