Esempio n. 1
0
 internal StackEntry(Reference.Scope scope, object value)
     : this()
 {
     _Type      = null;
     _Scope     = scope;
     IsConstant = true;
     Value      = value;
 }
Esempio n. 2
0
 internal StackEntry(TypeReference type)
     : this()
 {
     _Type      = type;
     _Scope     = null;
     IsConstant = false;
     Value      = null;
 }