Exemple #1
0
 public CIL_stsfld(string label, CILClass classType, CILVariable field)
     : base(label)
 {
     this.classType = classType;
     this.field = field;
 }
Exemple #2
0
 public CILClassField(CILVariable variable, bool isStatic)
 {
     this.variable = variable;
     this.isStatic = isStatic;
 }
Exemple #3
0
 public void AddLocalVariable(CILVariable variable)
 {
     localVariables.Add(variable);
 }
Exemple #4
0
 public CIL_newarr(string label, CILVariable elementType)
     : base(label)
 {
     this.elementType = elementType;
 }
Exemple #5
0
 public CILVar_array(string name, CILVariable elementType)
     : base(name)
 {
     this.elementType = elementType;
 }