Exemplo n.º 1
0
 bool interpret( Context* context)
 {
   return (pOperand1_->interpret(context) == pOperand2_->interpret(context)); 
 }
Exemplo n.º 2
0
 bool interpret( Context* context)
 {
   std::cout << "\tNonterminalExpression_equals::interpret( Context*)\n";
   return (pOperand1_->interpret(context) == pOperand2_->interpret(context)); 
 }