AjTalk.Model.BlockExpression.BlockExpression C# (CSharp) Method

BlockExpression() public method

public BlockExpression ( IList parameterNames, IList localVariables, IEnumerable body ) : System
parameterNames IList
localVariables IList
body IEnumerable
return System
        public BlockExpression(IList<string> parameterNames, IList<string> localVariables, IEnumerable<IExpression> body)
        {
            this.parameterNames = parameterNames;
            this.localVariables = localVariables;
            this.body = body;
        }