]>
Commit | Line | Data |
---|---|---|
b3378a02 | 1 | /* Cycript - Optimizing JavaScript Compiler/Runtime |
f95d2598 | 2 | * Copyright (C) 2009-2014 Jay Freeman (saurik) |
4644480a JF |
3 | */ |
4 | ||
f95d2598 | 5 | /* GNU Affero General Public License, Version 3 {{{ */ |
4644480a | 6 | /* |
f95d2598 JF |
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. | |
11 | ||
12 | * This program is distributed in the hope that it will be useful, | |
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
c15969fd | 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
f95d2598 JF |
15 | * GNU Affero General Public License for more details. |
16 | ||
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/>. | |
b3378a02 | 19 | **/ |
4644480a JF |
20 | /* }}} */ |
21 | ||
3b52fd1a | 22 | #include "Parser.hpp" |
6a981250 | 23 | #include "Replace.hpp" |
3b52fd1a | 24 | |
3b52fd1a JF |
25 | #include <iomanip> |
26 | ||
61fe0c53 JF |
27 | CYFunctionExpression *CYNonLocalize(CYContext &context, CYFunctionExpression *function) { |
28 | function->nonlocal_ = context.nextlocal_; | |
29 | return function; | |
30 | } | |
31 | ||
4644480a JF |
32 | CYExpression *CYAdd::Replace(CYContext &context) { |
33 | CYInfix::Replace(context); | |
34 | ||
fd5cdf97 JF |
35 | CYString *lhs(dynamic_cast<CYString *>(lhs_)); |
36 | CYString *rhs(dynamic_cast<CYString *>(rhs_)); | |
4644480a JF |
37 | |
38 | if (lhs != NULL || rhs != NULL) { | |
39 | if (lhs == NULL) { | |
fd5cdf97 | 40 | lhs = lhs_->String(context); |
4644480a | 41 | if (lhs == NULL) |
029bc65b | 42 | return this; |
4644480a | 43 | } else if (rhs == NULL) { |
fd5cdf97 | 44 | rhs = rhs_->String(context); |
4644480a | 45 | if (rhs == NULL) |
029bc65b | 46 | return this; |
4644480a JF |
47 | } |
48 | ||
49 | return lhs->Concat(context, rhs); | |
50 | } | |
51 | ||
fd5cdf97 JF |
52 | if (CYNumber *lhn = lhs_->Number(context)) |
53 | if (CYNumber *rhn = rhs_->Number(context)) | |
4644480a JF |
54 | return $D(lhn->Value() + rhn->Value()); |
55 | ||
029bc65b | 56 | return this; |
4644480a JF |
57 | } |
58 | ||
3b52fd1a | 59 | CYExpression *CYAddressOf::Replace(CYContext &context) { |
3b52fd1a JF |
60 | return $C0($M(rhs_, $S("$cya"))); |
61 | } | |
62 | ||
5192746c | 63 | CYArgument *CYArgument::Replace(CYContext &context) { $T(NULL) |
3b52fd1a | 64 | context.Replace(value_); |
5192746c JF |
65 | next_ = next_->Replace(context); |
66 | ||
67 | if (value_ == NULL) { | |
68 | if (next_ == NULL) | |
69 | return NULL; | |
70 | else | |
71 | value_ = $U; | |
72 | } | |
73 | ||
74 | return this; | |
3b52fd1a JF |
75 | } |
76 | ||
77 | CYExpression *CYArray::Replace(CYContext &context) { | |
78 | elements_->Replace(context); | |
029bc65b | 79 | return this; |
3b52fd1a JF |
80 | } |
81 | ||
82 | CYExpression *CYArrayComprehension::Replace(CYContext &context) { | |
83 | CYVariable *cyv($V("$cyv")); | |
84 | ||
c8a0500b | 85 | return $C0($F(NULL, $P1($L("$cyv"), comprehensions_->Parameters(context)), $$->* |
3b52fd1a JF |
86 | $E($ CYAssign(cyv, $ CYArray()))->* |
87 | comprehensions_->Replace(context, $E($C1($M(cyv, $S("push")), expression_)))->* | |
88 | $ CYReturn(cyv) | |
89 | )); | |
90 | } | |
91 | ||
92 | CYExpression *CYAssignment::Replace(CYContext &context) { | |
93 | context.Replace(lhs_); | |
94 | context.Replace(rhs_); | |
029bc65b | 95 | return this; |
3b52fd1a JF |
96 | } |
97 | ||
98 | CYStatement *CYBlock::Replace(CYContext &context) { | |
cde20a5a | 99 | context.ReplaceAll(statements_); |
029bc65b JF |
100 | if (statements_ == NULL) |
101 | return $ CYEmpty(); | |
102 | return this; | |
3b52fd1a JF |
103 | } |
104 | ||
105 | CYStatement *CYBreak::Replace(CYContext &context) { | |
029bc65b | 106 | return this; |
3b52fd1a JF |
107 | } |
108 | ||
6c093cce JF |
109 | CYExpression *CYCall::AddArgument(CYContext &context, CYExpression *value) { |
110 | CYArgument **argument(&arguments_); | |
111 | while (*argument != NULL) | |
112 | argument = &(*argument)->next_; | |
113 | *argument = $ CYArgument(value); | |
114 | return this; | |
115 | } | |
116 | ||
3b52fd1a JF |
117 | CYExpression *CYCall::Replace(CYContext &context) { |
118 | context.Replace(function_); | |
119 | arguments_->Replace(context); | |
029bc65b | 120 | return this; |
3b52fd1a JF |
121 | } |
122 | ||
37954781 JF |
123 | namespace cy { |
124 | namespace Syntax { | |
125 | ||
126 | void Catch::Replace(CYContext &context) { $T() | |
61fe0c53 | 127 | CYScope scope(true, context, code_.statements_); |
daf22a65 JF |
128 | |
129 | context.Replace(name_); | |
130 | context.scope_->Declare(context, name_, CYIdentifierCatch); | |
131 | ||
3b52fd1a | 132 | code_.Replace(context); |
daf22a65 | 133 | scope.Close(); |
3b52fd1a JF |
134 | } |
135 | ||
37954781 JF |
136 | } } |
137 | ||
3b52fd1a JF |
138 | void CYClause::Replace(CYContext &context) { $T() |
139 | context.Replace(case_); | |
cde20a5a | 140 | context.ReplaceAll(statements_); |
3b52fd1a JF |
141 | next_->Replace(context); |
142 | } | |
143 | ||
320ce753 | 144 | CYStatement *CYComment::Replace(CYContext &context) { |
029bc65b | 145 | return this; |
320ce753 JF |
146 | } |
147 | ||
3b52fd1a | 148 | CYExpression *CYCompound::Replace(CYContext &context) { |
fd5cdf97 JF |
149 | if (next_ == NULL) |
150 | return expression_; | |
151 | ||
152 | context.Replace(expression_); | |
153 | context.Replace(next_); | |
154 | ||
155 | if (CYCompound *compound = dynamic_cast<CYCompound *>(expression_)) { | |
156 | expression_ = compound->expression_; | |
157 | compound->expression_ = compound->next_; | |
158 | compound->next_ = next_; | |
159 | next_ = compound; | |
160 | } | |
161 | ||
9efd8b03 | 162 | return this; |
3b52fd1a JF |
163 | } |
164 | ||
e06e5ee1 | 165 | CYExpression *CYCompound::Primitive(CYContext &context) { |
fd5cdf97 JF |
166 | CYExpression *expression(expression_); |
167 | if (expression == NULL || next_ != NULL) | |
e06e5ee1 | 168 | return NULL; |
e06e5ee1 JF |
169 | return expression->Primitive(context); |
170 | } | |
171 | ||
3b52fd1a JF |
172 | CYFunctionParameter *CYComprehension::Parameters(CYContext &context) const { $T(NULL) |
173 | CYFunctionParameter *next(next_->Parameters(context)); | |
174 | if (CYFunctionParameter *parameter = Parameter(context)) { | |
175 | parameter->SetNext(next); | |
176 | return parameter; | |
177 | } else | |
178 | return next; | |
179 | } | |
180 | ||
181 | CYStatement *CYComprehension::Replace(CYContext &context, CYStatement *statement) const { | |
182 | return next_ == NULL ? statement : next_->Replace(context, statement); | |
183 | } | |
184 | ||
185 | CYExpression *CYCondition::Replace(CYContext &context) { | |
186 | context.Replace(test_); | |
187 | context.Replace(true_); | |
188 | context.Replace(false_); | |
029bc65b | 189 | return this; |
3b52fd1a JF |
190 | } |
191 | ||
ab2aa221 JF |
192 | void CYContext::NonLocal(CYStatement *&statements) { |
193 | CYContext &context(*this); | |
194 | ||
06293152 | 195 | if (nextlocal_ != NULL && nextlocal_->identifier_ != NULL) { |
daf22a65 JF |
196 | CYIdentifier *cye($I("$cye")->Replace(context)); |
197 | CYIdentifier *unique(nextlocal_->identifier_->Replace(context)); | |
198 | ||
199 | CYStatement *declare( | |
c8a0500b | 200 | $ CYVar($L1($ CYDeclaration(unique, $ CYObject())))); |
daf22a65 JF |
201 | |
202 | cy::Syntax::Catch *rescue( | |
203 | $ cy::Syntax::Catch(cye, $$->* | |
4e58e244 JF |
204 | $ CYIf($ CYIdentical($M($V(cye), $S("$cyk")), $V(unique)), $$->* |
205 | $ CYReturn($M($V(cye), $S("$cyv"))))->* | |
206 | $ cy::Syntax::Throw($V(cye)))); | |
daf22a65 | 207 | |
577bfbfa | 208 | context.Replace(declare); |
daf22a65 | 209 | rescue->Replace(context); |
ab2aa221 JF |
210 | |
211 | statements = $$->* | |
daf22a65 JF |
212 | declare->* |
213 | $ cy::Syntax::Try(statements, rescue, NULL); | |
ab2aa221 JF |
214 | } |
215 | } | |
216 | ||
217 | CYIdentifier *CYContext::Unique() { | |
0cbeddf8 | 218 | return $ CYIdentifier($pool.strcat("$cy", $pool.itoa(unique_++), NULL)); |
ab2aa221 JF |
219 | } |
220 | ||
3b52fd1a | 221 | CYStatement *CYContinue::Replace(CYContext &context) { |
029bc65b JF |
222 | return this; |
223 | } | |
224 | ||
c8a0500b JF |
225 | CYStatement *CYDebugger::Replace(CYContext &context) { |
226 | return this; | |
227 | } | |
228 | ||
029bc65b | 229 | CYAssignment *CYDeclaration::Assignment(CYContext &context) { |
15b88a33 JF |
230 | if (initialiser_ == NULL) |
231 | return NULL; | |
127c1a9c JF |
232 | |
233 | CYAssignment *value($ CYAssign(Variable(context), initialiser_)); | |
234 | initialiser_ = NULL; | |
235 | return value; | |
15b88a33 JF |
236 | } |
237 | ||
238 | CYVariable *CYDeclaration::Variable(CYContext &context) { | |
239 | return $V(identifier_); | |
3b52fd1a JF |
240 | } |
241 | ||
ad3b38bb | 242 | CYStatement *CYDeclaration::ForEachIn(CYContext &context, CYExpression *value) { |
c8a0500b | 243 | return $ CYVar($L1($ CYDeclaration(identifier_, value))); |
3b52fd1a JF |
244 | } |
245 | ||
029bc65b | 246 | CYExpression *CYDeclaration::Replace(CYContext &context) { |
15b88a33 JF |
247 | context.Replace(identifier_); |
248 | context.scope_->Declare(context, identifier_, CYIdentifierVariable); | |
249 | return Variable(context); | |
250 | } | |
251 | ||
252 | void CYDeclarations::Replace(CYContext &context) { $T() | |
253 | declaration_->Replace(context); | |
254 | next_->Replace(context); | |
3b52fd1a JF |
255 | } |
256 | ||
550ee46a | 257 | CYProperty *CYDeclarations::Property(CYContext &context) { $T(NULL) |
5192746c | 258 | return $ CYProperty(declaration_->identifier_, declaration_->initialiser_, next_->Property(context)); |
550ee46a JF |
259 | } |
260 | ||
15b88a33 | 261 | CYFunctionParameter *CYDeclarations::Parameter(CYContext &context) { $T(NULL) |
c8a0500b | 262 | return $ CYFunctionParameter($ CYDeclaration(declaration_->identifier_), next_->Parameter(context)); |
15b88a33 JF |
263 | } |
264 | ||
265 | CYArgument *CYDeclarations::Argument(CYContext &context) { $T(NULL) | |
5192746c | 266 | return $ CYArgument(declaration_->initialiser_, next_->Argument(context)); |
15b88a33 JF |
267 | } |
268 | ||
269 | CYCompound *CYDeclarations::Compound(CYContext &context) { $T(NULL) | |
fd5cdf97 | 270 | CYCompound *compound(next_->Compound(context)); |
029bc65b | 271 | if (CYAssignment *assignment = declaration_->Assignment(context)) |
fd5cdf97 | 272 | compound = $ CYCompound(assignment, compound); |
029bc65b | 273 | return compound; |
3b52fd1a JF |
274 | } |
275 | ||
276 | CYExpression *CYDirectMember::Replace(CYContext &context) { | |
ca0f097f JF |
277 | context.Replace(object_); |
278 | context.Replace(property_); | |
029bc65b | 279 | return this; |
3b52fd1a JF |
280 | } |
281 | ||
282 | CYStatement *CYDoWhile::Replace(CYContext &context) { | |
283 | context.Replace(test_); | |
284 | context.Replace(code_); | |
029bc65b | 285 | return this; |
3b52fd1a JF |
286 | } |
287 | ||
288 | void CYElement::Replace(CYContext &context) { $T() | |
289 | context.Replace(value_); | |
290 | next_->Replace(context); | |
291 | } | |
292 | ||
293 | CYStatement *CYEmpty::Replace(CYContext &context) { | |
9cd63688 | 294 | return NULL; |
029bc65b JF |
295 | } |
296 | ||
9a39f705 JF |
297 | CYExpression *CYEncodedType::Replace(CYContext &context) { |
298 | return typed_->Replace(context); | |
299 | } | |
300 | ||
720a57a8 JF |
301 | CYStatement *CYExpress::Replace(CYContext &context) { |
302 | while (CYExpress *express = dynamic_cast<CYExpress *>(next_)) { | |
fd5cdf97 | 303 | expression_ = $ CYCompound(expression_, express->expression_); |
029bc65b JF |
304 | SetNext(express->next_); |
305 | } | |
306 | ||
3b52fd1a | 307 | context.Replace(expression_); |
029bc65b JF |
308 | if (expression_ == NULL) |
309 | return $ CYEmpty(); | |
720a57a8 | 310 | |
029bc65b | 311 | return this; |
3b52fd1a JF |
312 | } |
313 | ||
6c093cce JF |
314 | CYExpression *CYExpression::AddArgument(CYContext &context, CYExpression *value) { |
315 | return $C1(this, value); | |
316 | } | |
317 | ||
3b52fd1a JF |
318 | CYExpression *CYExpression::ClassName(CYContext &context, bool object) { |
319 | return this; | |
320 | } | |
321 | ||
ad3b38bb JF |
322 | CYStatement *CYExpression::ForEachIn(CYContext &context, CYExpression *value) { |
323 | return $E($ CYAssign(this, value)); | |
3b52fd1a JF |
324 | } |
325 | ||
ae65d594 JF |
326 | CYAssignment *CYExpression::Assignment(CYContext &context) { |
327 | return NULL; | |
328 | } | |
329 | ||
4644480a JF |
330 | CYNumber *CYFalse::Number(CYContext &context) { |
331 | return $D(0); | |
332 | } | |
333 | ||
334 | CYString *CYFalse::String(CYContext &context) { | |
335 | return $S("false"); | |
336 | } | |
337 | ||
a0be43fc JF |
338 | CYExpression *CYFatArrow::Replace(CYContext &context) { |
339 | CYFunctionExpression *function($ CYFunctionExpression(NULL, parameters_, code_)); | |
340 | function->this_.SetNext(context.this_); | |
341 | return function; | |
342 | } | |
343 | ||
3b52fd1a JF |
344 | void CYFinally::Replace(CYContext &context) { $T() |
345 | code_.Replace(context); | |
346 | } | |
347 | ||
348 | CYStatement *CYFor::Replace(CYContext &context) { | |
029bc65b | 349 | context.Replace(initialiser_); |
3b52fd1a JF |
350 | context.Replace(test_); |
351 | context.Replace(increment_); | |
352 | context.Replace(code_); | |
029bc65b | 353 | return this; |
3b52fd1a JF |
354 | } |
355 | ||
15b88a33 JF |
356 | CYCompound *CYForDeclarations::Replace(CYContext &context) { |
357 | declarations_->Replace(context); | |
358 | return declarations_->Compound(context); | |
359 | } | |
360 | ||
361 | // XXX: this still feels highly suboptimal | |
3b52fd1a | 362 | CYStatement *CYForIn::Replace(CYContext &context) { |
127c1a9c | 363 | if (CYAssignment *assignment = initialiser_->Assignment(context)) |
15b88a33 JF |
364 | return $ CYBlock($$->* |
365 | $E(assignment)->* | |
366 | this | |
367 | ); | |
ae65d594 | 368 | |
127c1a9c JF |
369 | context.Replace(initialiser_); |
370 | context.Replace(set_); | |
371 | context.Replace(code_); | |
15b88a33 | 372 | return this; |
3b52fd1a JF |
373 | } |
374 | ||
375 | CYFunctionParameter *CYForInComprehension::Parameter(CYContext &context) const { | |
c8a0500b | 376 | return $ CYFunctionParameter($ CYDeclaration(name_)); |
3b52fd1a JF |
377 | } |
378 | ||
379 | CYStatement *CYForInComprehension::Replace(CYContext &context, CYStatement *statement) const { | |
4e58e244 | 380 | return $ CYForIn($V(name_), set_, CYComprehension::Replace(context, statement)); |
3b52fd1a JF |
381 | } |
382 | ||
d5618df7 | 383 | CYStatement *CYForOf::Replace(CYContext &context) { |
04ea132d JF |
384 | if (CYAssignment *assignment = initialiser_->Assignment(context)) |
385 | return $ CYBlock($$->* | |
386 | $E(assignment)->* | |
387 | this | |
388 | ); | |
389 | ||
2eb8215d | 390 | CYIdentifier *cys($I("$cys")), *cyt($I("$cyt")); |
3b52fd1a | 391 | |
c8a0500b | 392 | return $ CYLetStatement($L2($ CYDeclaration(cys, set_), $ CYDeclaration(cyt)), $$->* |
2eb8215d | 393 | $ CYForIn($V(cyt), $V(cys), $ CYBlock($$->* |
ad3b38bb | 394 | initialiser_->ForEachIn(context, $M($V(cys), $V(cyt)))->* |
3b52fd1a JF |
395 | code_ |
396 | )) | |
550ee46a | 397 | ); |
3b52fd1a JF |
398 | } |
399 | ||
d5618df7 | 400 | CYFunctionParameter *CYForOfComprehension::Parameter(CYContext &context) const { |
c8a0500b | 401 | return $ CYFunctionParameter($ CYDeclaration(name_)); |
3b52fd1a JF |
402 | } |
403 | ||
d5618df7 | 404 | CYStatement *CYForOfComprehension::Replace(CYContext &context, CYStatement *statement) const { |
2eb8215d | 405 | CYIdentifier *cys($I("cys")); |
3b52fd1a | 406 | |
c8a0500b | 407 | return $E($C0($F(NULL, $P1($L("$cys")), $$->* |
2eb8215d JF |
408 | $E($ CYAssign($V(cys), set_))->* |
409 | $ CYForIn($V(name_), $V(cys), $ CYBlock($$->* | |
410 | $E($ CYAssign($V(name_), $M($V(cys), $V(name_))))->* | |
3b52fd1a JF |
411 | CYComprehension::Replace(context, statement) |
412 | )) | |
413 | ))); | |
414 | } | |
415 | ||
14ec9e00 | 416 | void CYFunction::Inject(CYContext &context) { |
6a981250 | 417 | context.Replace(name_); |
a86e34d0 | 418 | context.scope_->Declare(context, name_, CYIdentifierOther); |
14ec9e00 JF |
419 | } |
420 | ||
421 | void CYFunction::Replace_(CYContext &context, bool outer) { | |
422 | if (outer) | |
423 | Inject(context); | |
424 | ||
a0be43fc JF |
425 | CYThisScope *_this(context.this_); |
426 | context.this_ = CYGetLast(&this_); | |
427 | ||
06293152 JF |
428 | CYNonLocal *nonlocal(context.nonlocal_); |
429 | CYNonLocal *nextlocal(context.nextlocal_); | |
430 | ||
ab2aa221 | 431 | bool localize; |
06293152 | 432 | if (nonlocal_ != NULL) { |
ab2aa221 | 433 | localize = false; |
06293152 JF |
434 | context.nonlocal_ = nonlocal_; |
435 | } else { | |
ab2aa221 JF |
436 | localize = true; |
437 | nonlocal_ = $ CYNonLocal(); | |
06293152 | 438 | context.nextlocal_ = nonlocal_; |
ab2aa221 JF |
439 | } |
440 | ||
61fe0c53 JF |
441 | CYScope scope(!localize, context, code_.statements_); |
442 | ||
14ec9e00 JF |
443 | if (!outer && name_ != NULL) |
444 | Inject(context); | |
445 | ||
c8a0500b | 446 | parameters_->Replace(context, code_); |
3b52fd1a | 447 | code_.Replace(context); |
029bc65b | 448 | |
a0be43fc JF |
449 | if (CYIdentifier *identifier = this_.identifier_) |
450 | code_.statements_ = $$->* | |
451 | $ CYVar($L1($ CYDeclaration(identifier, $ CYThis())))->* | |
452 | code_.statements_; | |
453 | ||
ab2aa221 JF |
454 | if (localize) |
455 | context.NonLocal(code_.statements_); | |
06293152 JF |
456 | |
457 | context.nextlocal_ = nextlocal; | |
ab2aa221 JF |
458 | context.nonlocal_ = nonlocal; |
459 | ||
a0be43fc JF |
460 | context.this_ = _this; |
461 | ||
daf22a65 | 462 | scope.Close(); |
3b52fd1a JF |
463 | } |
464 | ||
465 | CYExpression *CYFunctionExpression::Replace(CYContext &context) { | |
14ec9e00 | 466 | Replace_(context, false); |
029bc65b JF |
467 | return this; |
468 | } | |
469 | ||
c8a0500b JF |
470 | void CYFunctionParameter::Replace(CYContext &context, CYBlock &code) { $T() |
471 | CYAssignment *assignment(initialiser_->Assignment(context)); | |
472 | context.Replace(initialiser_); | |
473 | ||
474 | next_->Replace(context, code); | |
475 | ||
476 | if (assignment != NULL) | |
477 | // XXX: this cast is quite incorrect | |
478 | code.AddPrev($ CYIf($ CYIdentical($ CYTypeOf(dynamic_cast<CYExpression *>(initialiser_)), $S("undefined")), $$->* | |
479 | $E(assignment) | |
480 | )); | |
3b52fd1a JF |
481 | } |
482 | ||
483 | CYStatement *CYFunctionStatement::Replace(CYContext &context) { | |
14ec9e00 | 484 | Replace_(context, true); |
029bc65b JF |
485 | return this; |
486 | } | |
487 | ||
488 | CYIdentifier *CYIdentifier::Replace(CYContext &context) { | |
a846a8cd | 489 | if (replace_ != NULL && replace_ != this) |
de9fc71b | 490 | return replace_->Replace(context); |
a846a8cd | 491 | replace_ = context.scope_->Lookup(context, this); |
a86e34d0 | 492 | return replace_; |
3b52fd1a JF |
493 | } |
494 | ||
495 | CYStatement *CYIf::Replace(CYContext &context) { | |
496 | context.Replace(test_); | |
497 | context.Replace(true_); | |
498 | context.Replace(false_); | |
029bc65b | 499 | return this; |
3b52fd1a JF |
500 | } |
501 | ||
502 | CYFunctionParameter *CYIfComprehension::Parameter(CYContext &context) const { | |
503 | return NULL; | |
504 | } | |
505 | ||
506 | CYStatement *CYIfComprehension::Replace(CYContext &context, CYStatement *statement) const { | |
507 | return $ CYIf(test_, CYComprehension::Replace(context, statement)); | |
508 | } | |
509 | ||
7b750785 JF |
510 | CYStatement *CYImport::Replace(CYContext &context) { |
511 | return $ CYVar($L1($L(module_->part_->Word(), $C1($V("require"), module_->Replace(context, "/"))))); | |
512 | } | |
513 | ||
3b52fd1a | 514 | CYExpression *CYIndirect::Replace(CYContext &context) { |
3b52fd1a JF |
515 | return $M(rhs_, $S("$cyi")); |
516 | } | |
517 | ||
518 | CYExpression *CYIndirectMember::Replace(CYContext &context) { | |
3b52fd1a JF |
519 | return $M($ CYIndirect(object_), property_); |
520 | } | |
521 | ||
522 | CYExpression *CYInfix::Replace(CYContext &context) { | |
523 | context.Replace(lhs_); | |
524 | context.Replace(rhs_); | |
029bc65b | 525 | return this; |
3b52fd1a JF |
526 | } |
527 | ||
528 | CYStatement *CYLabel::Replace(CYContext &context) { | |
529 | context.Replace(statement_); | |
029bc65b | 530 | return this; |
3b52fd1a JF |
531 | } |
532 | ||
690cf1a8 | 533 | CYExpression *CYLambda::Replace(CYContext &context) { |
9a39f705 | 534 | return $N2($V("Functor"), $ CYFunctionExpression(NULL, parameters_->Parameters(context), statements_), parameters_->TypeSignature(context, typed_->Replace(context))); |
690cf1a8 JF |
535 | } |
536 | ||
c8a0500b | 537 | CYStatement *CYLetStatement::Replace(CYContext &context) { |
61fe0c53 | 538 | return $E($ CYCall(CYNonLocalize(context, $ CYFunctionExpression(NULL, declarations_->Parameter(context), code_)), declarations_->Argument(context))); |
550ee46a JF |
539 | } |
540 | ||
7b750785 JF |
541 | CYString *CYModule::Replace(CYContext &context, const char *separator) const { |
542 | if (next_ == NULL) | |
543 | return $ CYString(part_); | |
544 | return $ CYString($pool.strcat(next_->Replace(context, separator)->Value(), separator, part_->Word(), NULL)); | |
545 | } | |
546 | ||
62f398e4 JF |
547 | CYExpression *CYMultiply::Replace(CYContext &context) { |
548 | CYInfix::Replace(context); | |
549 | ||
fd5cdf97 JF |
550 | if (CYNumber *lhn = lhs_->Number(context)) |
551 | if (CYNumber *rhn = rhs_->Number(context)) | |
62f398e4 JF |
552 | return $D(lhn->Value() * rhn->Value()); |
553 | ||
554 | return this; | |
555 | } | |
556 | ||
2eb8215d JF |
557 | namespace cy { |
558 | namespace Syntax { | |
559 | ||
560 | CYExpression *New::AddArgument(CYContext &context, CYExpression *value) { | |
bf45251b | 561 | CYSetLast(arguments_) = $ CYArgument(value); |
6c093cce JF |
562 | return this; |
563 | } | |
564 | ||
2eb8215d | 565 | CYExpression *New::Replace(CYContext &context) { |
3b52fd1a JF |
566 | context.Replace(constructor_); |
567 | arguments_->Replace(context); | |
029bc65b | 568 | return this; |
3b52fd1a JF |
569 | } |
570 | ||
2eb8215d JF |
571 | } } |
572 | ||
4644480a JF |
573 | CYNumber *CYNull::Number(CYContext &context) { |
574 | return $D(0); | |
575 | } | |
576 | ||
577 | CYString *CYNull::String(CYContext &context) { | |
578 | return $S("null"); | |
579 | } | |
580 | ||
581 | CYNumber *CYNumber::Number(CYContext &context) { | |
582 | return this; | |
583 | } | |
584 | ||
585 | CYString *CYNumber::String(CYContext &context) { | |
586 | // XXX: there is a precise algorithm for this | |
0cbeddf8 | 587 | return $S($pool.sprintf(24, "%.17g", Value())); |
4644480a JF |
588 | } |
589 | ||
3b52fd1a JF |
590 | CYExpression *CYObject::Replace(CYContext &context) { |
591 | properties_->Replace(context); | |
029bc65b | 592 | return this; |
3b52fd1a JF |
593 | } |
594 | ||
595 | CYExpression *CYPostfix::Replace(CYContext &context) { | |
596 | context.Replace(lhs_); | |
029bc65b | 597 | return this; |
3b52fd1a JF |
598 | } |
599 | ||
600 | CYExpression *CYPrefix::Replace(CYContext &context) { | |
601 | context.Replace(rhs_); | |
029bc65b | 602 | return this; |
3b52fd1a JF |
603 | } |
604 | ||
10711823 | 605 | // XXX: this is evil evil black magic. don't ask, don't tell... don't believe! |
45d0c928 | 606 | #define MappingSet "0etnirsoalfucdphmgyvbxTwSNECAFjDLkMOIBPqzRH$_WXUVGYKQJZ" |
10711823 | 607 | //#define MappingSet "0abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_" |
45d0c928 | 608 | |
e013809d JF |
609 | namespace { |
610 | struct IdentifierUsageLess : | |
611 | std::binary_function<CYIdentifier *, CYIdentifier *, bool> | |
612 | { | |
613 | _finline bool operator ()(CYIdentifier *lhs, CYIdentifier *rhs) const { | |
614 | if (lhs->usage_ != rhs->usage_) | |
615 | return lhs->usage_ > rhs->usage_; | |
616 | return lhs < rhs; | |
617 | } | |
618 | }; | |
619 | ||
620 | typedef std::set<CYIdentifier *, IdentifierUsageLess> IdentifierUsages; | |
621 | } | |
622 | ||
3b52fd1a | 623 | void CYProgram::Replace(CYContext &context) { |
61fe0c53 | 624 | CYScope scope(true, context, statements_); |
ab2aa221 | 625 | |
06293152 | 626 | context.nextlocal_ = $ CYNonLocal(); |
cde20a5a | 627 | context.ReplaceAll(statements_); |
ab2aa221 JF |
628 | context.NonLocal(statements_); |
629 | ||
daf22a65 | 630 | scope.Close(); |
14ec9e00 JF |
631 | |
632 | size_t offset(0); | |
633 | ||
6a981250 | 634 | CYCStringSet external; |
a846a8cd | 635 | for (CYIdentifierValueSet::const_iterator i(scope.identifiers_.begin()); i != scope.identifiers_.end(); ++i) |
6a981250 JF |
636 | external.insert((*i)->Word()); |
637 | ||
e013809d JF |
638 | IdentifierUsages usages; |
639 | ||
a846a8cd | 640 | if (offset < context.rename_.size()) |
c2c9f509 JF |
641 | CYForEach (i, context.rename_[offset].identifier_) |
642 | usages.insert(i); | |
e013809d | 643 | |
14ec9e00 | 644 | // XXX: totalling the probable occurrences and sorting by them would improve the result |
a846a8cd | 645 | for (CYIdentifierUsageVector::const_iterator i(context.rename_.begin()); i != context.rename_.end(); ++i, ++offset) { |
de9fc71b JF |
646 | //std::cout << *i << ":" << (*i)->offset_ << std::endl; |
647 | ||
14ec9e00 JF |
648 | const char *name; |
649 | ||
650 | if (context.options_.verbose_) | |
0cbeddf8 | 651 | name = $pool.strcat("$", $pool.itoa(offset), NULL); |
14ec9e00 JF |
652 | else { |
653 | char id[8]; | |
654 | id[7] = '\0'; | |
655 | ||
656 | id: | |
657 | unsigned position(7), local(offset + 1); | |
658 | ||
659 | do { | |
45d0c928 JF |
660 | unsigned index(local % (sizeof(MappingSet) - 1)); |
661 | local /= sizeof(MappingSet) - 1; | |
662 | id[--position] = MappingSet[index]; | |
14ec9e00 JF |
663 | } while (local != 0); |
664 | ||
6a981250 | 665 | if (external.find(id + position) != external.end()) { |
14ec9e00 JF |
666 | ++offset; |
667 | goto id; | |
668 | } | |
669 | ||
b799113b | 670 | name = $pool.strmemdup(id + position, 7 - position); |
14ec9e00 JF |
671 | // XXX: at some point, this could become a keyword |
672 | } | |
673 | ||
c2c9f509 | 674 | CYForEach (identifier, i->identifier_) |
14ec9e00 JF |
675 | identifier->Set(name); |
676 | } | |
3b52fd1a JF |
677 | } |
678 | ||
679 | void CYProperty::Replace(CYContext &context) { $T() | |
680 | context.Replace(value_); | |
681 | next_->Replace(context); | |
5192746c JF |
682 | if (value_ == NULL) |
683 | value_ = $U; | |
3b52fd1a JF |
684 | } |
685 | ||
686 | CYStatement *CYReturn::Replace(CYContext &context) { | |
ab2aa221 JF |
687 | if (context.nonlocal_ != NULL) { |
688 | CYProperty *value(value_ == NULL ? NULL : $ CYProperty($S("$cyv"), value_)); | |
689 | return $ cy::Syntax::Throw($ CYObject( | |
4e58e244 | 690 | $ CYProperty($S("$cyk"), $V(context.nonlocal_->Target(context)), value) |
ab2aa221 JF |
691 | )); |
692 | } | |
693 | ||
3b52fd1a | 694 | context.Replace(value_); |
029bc65b JF |
695 | return this; |
696 | } | |
697 | ||
6c093cce JF |
698 | CYExpression *CYRubyBlock::Replace(CYContext &context) { |
699 | // XXX: this needs to do something much more epic to handle return | |
700 | return call_->AddArgument(context, proc_->Replace(context)); | |
701 | } | |
702 | ||
703 | CYExpression *CYRubyProc::Replace(CYContext &context) { | |
61fe0c53 | 704 | return CYNonLocalize(context, $ CYFunctionExpression(NULL, parameters_, code_)); |
6c093cce JF |
705 | } |
706 | ||
61fe0c53 JF |
707 | CYScope::CYScope(bool transparent, CYContext &context, CYStatement *&statements) : |
708 | transparent_(transparent), | |
daf22a65 JF |
709 | context_(context), |
710 | statements_(statements), | |
711 | parent_(context.scope_) | |
712 | { | |
713 | context_.scope_ = this; | |
714 | } | |
715 | ||
e4676127 JF |
716 | CYScope::~CYScope() { |
717 | } | |
718 | ||
daf22a65 JF |
719 | void CYScope::Close() { |
720 | context_.scope_ = parent_; | |
721 | Scope(context_, statements_); | |
722 | } | |
723 | ||
a86e34d0 | 724 | void CYScope::Declare(CYContext &context, CYIdentifier *identifier, CYIdentifierFlags flags) { |
61fe0c53 | 725 | if (!transparent_ || flags == CYIdentifierArgument || flags == CYIdentifierCatch) |
daf22a65 | 726 | internal_.insert(CYIdentifierAddressFlagsMap::value_type(identifier, flags)); |
61fe0c53 JF |
727 | else if (parent_ != NULL) |
728 | parent_->Declare(context, identifier, flags); | |
a86e34d0 JF |
729 | } |
730 | ||
731 | CYIdentifier *CYScope::Lookup(CYContext &context, CYIdentifier *identifier) { | |
732 | std::pair<CYIdentifierValueSet::iterator, bool> insert(identifiers_.insert(identifier)); | |
733 | return *insert.first; | |
734 | } | |
735 | ||
6a981250 | 736 | void CYScope::Merge(CYContext &context, CYIdentifier *identifier) { |
10711823 | 737 | std::pair<CYIdentifierValueSet::iterator, bool> insert(identifiers_.insert(identifier)); |
6a981250 JF |
738 | if (!insert.second) { |
739 | if ((*insert.first)->offset_ < identifier->offset_) | |
740 | (*insert.first)->offset_ = identifier->offset_; | |
741 | identifier->replace_ = *insert.first; | |
e013809d | 742 | (*insert.first)->usage_ += identifier->usage_ + 1; |
029bc65b JF |
743 | } |
744 | } | |
745 | ||
10711823 JF |
746 | namespace { |
747 | struct IdentifierOffset { | |
748 | size_t offset_; | |
749 | CYIdentifierFlags flags_; | |
e013809d | 750 | size_t usage_; |
10711823 JF |
751 | CYIdentifier *identifier_; |
752 | ||
e013809d JF |
753 | IdentifierOffset(CYIdentifier *identifier, CYIdentifierFlags flags) : |
754 | offset_(identifier->offset_), | |
10711823 | 755 | flags_(flags), |
e013809d | 756 | usage_(identifier->usage_), |
10711823 JF |
757 | identifier_(identifier) |
758 | { | |
759 | } | |
760 | }; | |
761 | ||
762 | struct IdentifierOffsetLess : | |
763 | std::binary_function<const IdentifierOffset &, const IdentifierOffset &, bool> | |
764 | { | |
765 | _finline bool operator ()(const IdentifierOffset &lhs, const IdentifierOffset &rhs) const { | |
766 | if (lhs.offset_ != rhs.offset_) | |
767 | return lhs.offset_ < rhs.offset_; | |
768 | if (lhs.flags_ != rhs.flags_) | |
769 | return lhs.flags_ < rhs.flags_; | |
e013809d | 770 | /*if (lhs.usage_ != rhs.usage_) |
a846a8cd | 771 | return lhs.usage_ < rhs.usage_;*/ |
10711823 JF |
772 | return lhs.identifier_ < rhs.identifier_; |
773 | } | |
774 | }; | |
775 | ||
776 | typedef std::set<IdentifierOffset, IdentifierOffsetLess> IdentifierOffsets; | |
777 | } | |
778 | ||
029bc65b | 779 | void CYScope::Scope(CYContext &context, CYStatement *&statements) { |
2c81c6df JF |
780 | if (parent_ == NULL) |
781 | return; | |
782 | ||
029bc65b | 783 | CYDeclarations *last(NULL), *curr(NULL); |
14ec9e00 | 784 | |
10711823 | 785 | IdentifierOffsets offsets; |
6a981250 | 786 | |
10711823 | 787 | for (CYIdentifierAddressFlagsMap::const_iterator i(internal_.begin()); i != internal_.end(); ++i) |
a846a8cd | 788 | if (i->second != CYIdentifierMagic) |
e013809d | 789 | offsets.insert(IdentifierOffset(i->first, i->second)); |
10711823 JF |
790 | |
791 | size_t offset(0); | |
792 | ||
793 | for (IdentifierOffsets::const_iterator i(offsets.begin()); i != offsets.end(); ++i) { | |
794 | if (i->flags_ == CYIdentifierVariable) { | |
795 | CYDeclarations *next($ CYDeclarations($ CYDeclaration(i->identifier_))); | |
029bc65b JF |
796 | if (last == NULL) |
797 | last = next; | |
798 | if (curr != NULL) | |
799 | curr->SetNext(next); | |
800 | curr = next; | |
801 | } | |
029bc65b | 802 | |
10711823 JF |
803 | if (offset < i->offset_) |
804 | offset = i->offset_; | |
a846a8cd JF |
805 | if (context.rename_.size() <= offset) |
806 | context.rename_.resize(offset + 1); | |
10711823 | 807 | |
a846a8cd | 808 | CYIdentifierUsage &rename(context.rename_[offset++]); |
e013809d JF |
809 | i->identifier_->SetNext(rename.identifier_); |
810 | rename.identifier_ = i->identifier_; | |
811 | rename.usage_ += i->identifier_->usage_ + 1; | |
6a981250 JF |
812 | } |
813 | ||
029bc65b JF |
814 | if (last != NULL) { |
815 | CYVar *var($ CYVar(last)); | |
816 | var->SetNext(statements); | |
817 | statements = var; | |
818 | } | |
819 | ||
6a981250 JF |
820 | for (CYIdentifierValueSet::const_iterator i(identifiers_.begin()); i != identifiers_.end(); ++i) |
821 | if (internal_.find(*i) == internal_.end()) { | |
de9fc71b | 822 | //std::cout << *i << '=' << offset << std::endl; |
6a981250 JF |
823 | if ((*i)->offset_ < offset) |
824 | (*i)->offset_ = offset; | |
825 | parent_->Merge(context, *i); | |
826 | } | |
029bc65b JF |
827 | } |
828 | ||
4644480a JF |
829 | CYString *CYString::Concat(CYContext &context, CYString *rhs) const { |
830 | size_t size(size_ + rhs->size_); | |
2eb8215d | 831 | char *value($ char[size + 1]); |
4644480a JF |
832 | memcpy(value, value_, size_); |
833 | memcpy(value + size_, rhs->value_, rhs->size_); | |
834 | value[size] = '\0'; | |
a14eb702 | 835 | return $S(value, size); |
4644480a JF |
836 | } |
837 | ||
838 | CYNumber *CYString::Number(CYContext &context) { | |
839 | // XXX: there is a precise algorithm for this | |
840 | return NULL; | |
841 | } | |
842 | ||
843 | CYString *CYString::String(CYContext &context) { | |
844 | return this; | |
845 | } | |
846 | ||
3b52fd1a JF |
847 | CYStatement *CYSwitch::Replace(CYContext &context) { |
848 | context.Replace(value_); | |
849 | clauses_->Replace(context); | |
029bc65b | 850 | return this; |
3b52fd1a JF |
851 | } |
852 | ||
853 | CYExpression *CYThis::Replace(CYContext &context) { | |
a0be43fc JF |
854 | if (context.this_ != NULL) |
855 | return $V(context.this_->Identifier(context)); | |
029bc65b | 856 | return this; |
3b52fd1a JF |
857 | } |
858 | ||
37954781 JF |
859 | namespace cy { |
860 | namespace Syntax { | |
861 | ||
862 | CYStatement *Throw::Replace(CYContext &context) { | |
3b52fd1a | 863 | context.Replace(value_); |
029bc65b | 864 | return this; |
3b52fd1a JF |
865 | } |
866 | ||
37954781 JF |
867 | } } |
868 | ||
3b52fd1a | 869 | CYExpression *CYTrivial::Replace(CYContext &context) { |
029bc65b | 870 | return this; |
3b52fd1a JF |
871 | } |
872 | ||
4644480a JF |
873 | CYNumber *CYTrue::Number(CYContext &context) { |
874 | return $D(1); | |
875 | } | |
876 | ||
877 | CYString *CYTrue::String(CYContext &context) { | |
878 | return $S("true"); | |
879 | } | |
880 | ||
37954781 JF |
881 | namespace cy { |
882 | namespace Syntax { | |
883 | ||
884 | CYStatement *Try::Replace(CYContext &context) { | |
3b52fd1a JF |
885 | code_.Replace(context); |
886 | catch_->Replace(context); | |
887 | finally_->Replace(context); | |
029bc65b | 888 | return this; |
3b52fd1a JF |
889 | } |
890 | ||
37954781 JF |
891 | } } |
892 | ||
9a39f705 JF |
893 | CYExpression *CYTypeArrayOf::Replace_(CYContext &context, CYExpression *type) { |
894 | return next_->Replace(context, $ CYCall($ CYDirectMember(type, $ CYString("arrayOf")), $ CYArgument(size_))); | |
690cf1a8 JF |
895 | } |
896 | ||
3fe16be7 JF |
897 | CYExpression *CYTypeBlockWith::Replace_(CYContext &context, CYExpression *type) { |
898 | return next_->Replace(context, $ CYCall($ CYDirectMember(type, $ CYString("blockWith")), parameters_->Argument(context))); | |
899 | } | |
900 | ||
9a39f705 JF |
901 | CYExpression *CYTypeConstant::Replace_(CYContext &context, CYExpression *type) { |
902 | return next_->Replace(context, $ CYCall($ CYDirectMember(type, $ CYString("constant")))); | |
690cf1a8 JF |
903 | } |
904 | ||
60097023 | 905 | CYStatement *CYTypeDefinition::Replace(CYContext &context) { |
84759b5b | 906 | return $E($ CYAssign($V(typed_->identifier_), typed_->Replace(context))); |
60097023 JF |
907 | } |
908 | ||
03db6a67 JF |
909 | CYExpression *CYTypeError::Replace(CYContext &context) { |
910 | _assert(false); | |
911 | return NULL; | |
912 | } | |
913 | ||
9a39f705 JF |
914 | CYExpression *CYTypeModifier::Replace(CYContext &context, CYExpression *type) { $T(type) |
915 | return Replace_(context, type); | |
916 | } | |
917 | ||
918 | CYExpression *CYTypeFunctionWith::Replace_(CYContext &context, CYExpression *type) { | |
919 | return next_->Replace(context, $ CYCall($ CYDirectMember(type, $ CYString("functionWith")), parameters_->Argument(context))); | |
920 | } | |
921 | ||
3fe283c5 JF |
922 | CYExpression *CYTypeLong::Replace(CYContext &context) { |
923 | return $ CYCall($ CYDirectMember(specifier_->Replace(context), $ CYString("long"))); | |
924 | } | |
925 | ||
9a39f705 JF |
926 | CYExpression *CYTypePointerTo::Replace_(CYContext &context, CYExpression *type) { |
927 | return next_->Replace(context, $ CYCall($ CYDirectMember(type, $ CYString("pointerTo")))); | |
663c538f JF |
928 | } |
929 | ||
3fe283c5 JF |
930 | CYExpression *CYTypeShort::Replace(CYContext &context) { |
931 | return $ CYCall($ CYDirectMember(specifier_->Replace(context), $ CYString("short"))); | |
932 | } | |
933 | ||
934 | CYExpression *CYTypeSigned::Replace(CYContext &context) { | |
935 | return $ CYCall($ CYDirectMember(specifier_->Replace(context), $ CYString("signed"))); | |
936 | } | |
937 | ||
938 | CYExpression *CYTypeUnsigned::Replace(CYContext &context) { | |
939 | return $ CYCall($ CYDirectMember(specifier_->Replace(context), $ CYString("unsigned"))); | |
940 | } | |
941 | ||
942 | CYExpression *CYTypeVariable::Replace(CYContext &context) { | |
943 | return $V(name_); | |
944 | } | |
945 | ||
946 | CYExpression *CYTypeVoid::Replace(CYContext &context) { | |
947 | return $N1($V("Type"), $ CYString("v")); | |
948 | } | |
949 | ||
9a39f705 JF |
950 | CYExpression *CYTypeVolatile::Replace_(CYContext &context, CYExpression *type) { |
951 | return next_->Replace(context, $ CYCall($ CYDirectMember(type, $ CYString("volatile")))); | |
690cf1a8 JF |
952 | } |
953 | ||
9a39f705 | 954 | CYExpression *CYTypedIdentifier::Replace(CYContext &context) { |
3fe283c5 | 955 | return modifier_->Replace(context, specifier_->Replace(context)); |
690cf1a8 JF |
956 | } |
957 | ||
663c538f | 958 | CYArgument *CYTypedParameter::Argument(CYContext &context) { $T(NULL) |
9a39f705 | 959 | return $ CYArgument(typed_->Replace(context), next_->Argument(context)); |
663c538f JF |
960 | } |
961 | ||
690cf1a8 JF |
962 | CYFunctionParameter *CYTypedParameter::Parameters(CYContext &context) { $T(NULL) |
963 | return $ CYFunctionParameter($ CYDeclaration(typed_->identifier_ ?: context.Unique()), next_->Parameters(context)); | |
964 | } | |
965 | ||
966 | CYExpression *CYTypedParameter::TypeSignature(CYContext &context, CYExpression *prefix) { $T(prefix) | |
a2f3ecab | 967 | return next_->TypeSignature(context, $ CYAdd(prefix, typed_->Replace(context))); |
690cf1a8 JF |
968 | } |
969 | ||
3b52fd1a | 970 | CYStatement *CYVar::Replace(CYContext &context) { |
15b88a33 | 971 | declarations_->Replace(context); |
fd5cdf97 JF |
972 | if (CYCompound *compound = declarations_->Compound(context)) |
973 | return $E(compound); | |
974 | return $ CYEmpty(); | |
3b52fd1a JF |
975 | } |
976 | ||
977 | CYExpression *CYVariable::Replace(CYContext &context) { | |
577bfbfa | 978 | context.Replace(name_); |
029bc65b | 979 | return this; |
3b52fd1a JF |
980 | } |
981 | ||
982 | CYStatement *CYWhile::Replace(CYContext &context) { | |
983 | context.Replace(test_); | |
984 | context.Replace(code_); | |
029bc65b | 985 | return this; |
3b52fd1a JF |
986 | } |
987 | ||
988 | CYStatement *CYWith::Replace(CYContext &context) { | |
989 | context.Replace(scope_); | |
990 | context.Replace(code_); | |
029bc65b | 991 | return this; |
3b52fd1a JF |
992 | } |
993 | ||
994 | CYExpression *CYWord::ClassName(CYContext &context, bool object) { | |
995 | CYString *name($S(this)); | |
996 | if (object) | |
997 | return $C1($V("objc_getClass"), name); | |
998 | else | |
999 | return name; | |
1000 | } |