예제 #1
0
파일: CIL_stsfld.cs 프로젝트: edwardt/study
 public CIL_stsfld(string label, CILClass classType, CILVariable field)
     : base(label)
 {
     this.classType = classType;
     this.field = field;
 }
예제 #2
0
 public CILClassField(CILVariable variable, bool isStatic)
 {
     this.variable = variable;
     this.isStatic = isStatic;
 }
예제 #3
0
파일: CILMethod.cs 프로젝트: edwardt/study
 public void AddLocalVariable(CILVariable variable)
 {
     localVariables.Add(variable);
 }
예제 #4
0
파일: CIL_newarr.cs 프로젝트: edwardt/study
 public CIL_newarr(string label, CILVariable elementType)
     : base(label)
 {
     this.elementType = elementType;
 }
예제 #5
0
 public CILVar_array(string name, CILVariable elementType)
     : base(name)
 {
     this.elementType = elementType;
 }