Esempio n. 1
0
 public Expression Visit(LogicTrue constant)
 {
     return(constant);
 }
Esempio n. 2
0
 public T Visit(LogicTrue constant)
 {
     return(default(T));
 }
 public SortedSet <string> Visit(LogicTrue constant)
 {
     return(new SortedSet <string> {
     });
 }
Esempio n. 4
0
 public async Task <Value> Visit(LogicTrue constant)
 {
     return(await Task.Run(() => new BoolValue(true))); // get rid of compiler warning
 }