Пример #1
0
 void applySymbol(const char *name, bool is_comment = false) {
   Exp *sub = current->add();
   sub->setName(name);
   sub->setComment(is_comment);
 }
Пример #2
0
 void applyLeft() {
   current = current->add();
 }