private MethodBodyBlock(VariablesList variables, Type returnType) { this.variables = variables; this.returnType = returnType; }
public MethodBodyBlock(Type returnType) { variables = new VariablesList(); this.returnType = returnType; }