Exemplo n.º 1
0
 void applySymbol(const char *name, bool is_comment = false) {
   Exp *sub = current->add();
   sub->setName(name);
   sub->setComment(is_comment);
 }
Exemplo n.º 2
0
 void applyLeft() {
   current = current->add();
 }