示例#1
0
 protected override string VisitAnd(And a)
 {
     return("(" + Visit(a.Left) + " & " + Visit(a.Right) + ")");
 }
示例#2
0
 protected abstract R VisitAnd(And a);
示例#3
0
 protected override bool VisitAnd(And a)
 {
     return(Visit(a.Left) && Visit(a.Right));
 }