AjTalk.Model.MethodModel.MethodModel C# (CSharp) Метод

MethodModel() публичный Метод

public MethodModel ( string selector, IList parameterNames, IList localVariables, IEnumerable body, ClassModel @class, bool isClassMethod ) : System
selector string
parameterNames IList
localVariables IList
body IEnumerable
@class ClassModel
isClassMethod bool
Результат System
        public MethodModel(string selector, IList<string> parameterNames, IList<string> localVariables, IEnumerable<IExpression> body, ClassModel @class, bool isClassMethod)
        {
            this.selector = selector;
            this.parameterNames = parameterNames;
            this.localVariables = localVariables;
            this.body = body;
            this.@class = @class;
            this.isClassMethod = isClassMethod;
        }

Same methods

MethodModel::MethodModel ( string selector, IList parameterNames, IList localVariables, IEnumerable body ) : System