示例#1
0
 public bool Accept(SemanticVisitor visitor)
 {
     return visitor.Visit(this, x => _conditions.All(y => y.Accept(x)) && _consequences.All(y => y.Accept(x)));
 }
示例#2
0
 public bool Accept(SemanticVisitor visitor)
 {
     return(visitor.Visit(this, x => true));
 }
示例#3
0
 public bool Accept(SemanticVisitor visitor)
 {
     return(visitor.Visit(this, x => _conditions.All(y => y.Accept(x)) && _consequences.All(y => y.Accept(x))));
 }