Exemplo n.º 1
0
 public IInterpetedOperation <IInterpetedAnyType> EmptyInstance(IEmptyInstance co)
 {
     if (backing.TryGetValue(co, out var res))
     {
         return(res);
     }
     else
     {
         var op = new InterpetedEmptyInstance();
         backing.Add(co, op);
         op.Init();
         return(op);
     }
 }
Exemplo n.º 2
0
 public IReadOnlyList <IMemberDefinition> EmptyInstance(IEmptyInstance co) => new List <IMemberDefinition>();
Exemplo n.º 3
0
 public Nothing EmptyInstance(IEmptyInstance co) => new Nothing();
Exemplo n.º 4
0
 public Nothing EmptyInstance(IEmptyInstance co)
 {
     return(new Nothing());
 }