Ejemplo n.º 1
0
 internal static ConstantDefault CreateDefault(TypeSymbol type)
 {
     return(new ConstantDefault(type));
 }
Ejemplo n.º 2
0
 internal static ConstantWithValue <T> Create <T>(T value, TypeSymbol t)
 {
     return(new ConstantWithValue <T>(value, t));
 }
Ejemplo n.º 3
0
 internal ConstantDefault(TypeSymbol type)
 {
     Type = type;
 }
Ejemplo n.º 4
0
 internal ConstantWithValue(T value, TypeSymbol t)
 {
     Value = value; Type = t;
 }