示例#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());
 }