예제 #1
0
 public IInterpetedOperation <IInterpetedAnyType> ConstantBool(IConstantBool constantBool)
 {
     if (backing.TryGetValue(constantBool, out var res))
     {
         return(res);
     }
     else
     {
         var op = new InterpetedConstantBool();
         backing.Add(constantBool, op);
         op.Init(constantBool.Value);
         return(op);
     }
 }
예제 #2
0
 public IReadOnlyList <IMemberDefinition> ConstantBool(IConstantBool constantBool) => new List <IMemberDefinition>();
예제 #3
0
 // deadends:
 public Nothing ConstantBool(IConstantBool constantBool) => new Nothing();
예제 #4
0
 public Nothing ConstantBool(IConstantBool constantBool)
 {
     return(new Nothing());
 }