Absyn.FunctionDef.FunctionDef C# (CSharp) Method

FunctionDef() public method

public FunctionDef ( String n, ArrayList p, Exp b ) : System
n String
p System.Collections.ArrayList
b Exp
return System
	public FunctionDef(String n, ArrayList p, Exp b)
	{
	    Name = n;
	    Params = p;
	    Body = b;
	    Count = Params.Count;
	    //ExpType = Body.ExpType;
	}