-CYStatement *CYExpress::Collapse(CYContext &context) {
- if (CYExpress *express = dynamic_cast<CYExpress *>(next_)) {
- CYCompound *next(dynamic_cast<CYCompound *>(express->expression_));
- if (next == NULL)
- next = $ CYCompound(express->expression_);
- next->AddPrev(expression_);
- expression_ = next;
+CYStatement *CYExpress::Replace(CYContext &context) {
+ while (CYExpress *express = dynamic_cast<CYExpress *>(next_)) {
+ CYCompound *compound(dynamic_cast<CYCompound *>(express->expression_));
+ if (compound == NULL)
+ compound = $ CYCompound(express->expression_);
+ compound->AddPrev(expression_);
+ expression_ = compound;