示例#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)); 
 }