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