Esempio n. 1
0
 private MethodBodyBlock(VariablesList variables, Type returnType)
 {
     this.variables = variables;
     this.returnType = returnType;
 }
Esempio n. 2
0
 public MethodBodyBlock(Type returnType)
 {
     variables = new VariablesList();
     this.returnType = returnType;
 }