Пример #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());
 }