Inheritance: BooleanExpression
示例#1
0
 public void Visit(LessThanExpression expression, CommonTree tree)
 {
     SetLine(expression, tree);
     Parent(tree).Children.Add(expression);
     VisitChildren(tree);
 }
 public void Visit(LessThanExpression expression)
 {
     DoBoolean(expression, CodeBinaryOperatorType.LessThan);
 }