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