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