Exemplo n.º 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);
     }
 }
Exemplo n.º 2
0
 public IReadOnlyList <IMemberDefinition> ConstantBool(IConstantBool constantBool) => new List <IMemberDefinition>();
Exemplo n.º 3
0
 // deadends:
 public Nothing ConstantBool(IConstantBool constantBool) => new Nothing();
Exemplo n.º 4
0
 public Nothing ConstantBool(IConstantBool constantBool)
 {
     return(new Nothing());
 }