Boo.BooLangService.Document.Nodes.MethodTreeNode.MethodTreeNode C# (CSharp) Method

MethodTreeNode() public method

public MethodTreeNode ( ISourceOrigin sourceOrigin, string returnType, string containingClass ) : System.Collections.Generic
sourceOrigin ISourceOrigin
returnType string
containingClass string
return System.Collections.Generic
        public MethodTreeNode(ISourceOrigin sourceOrigin, string returnType, string containingClass)
            : base(sourceOrigin)
        {
            ReturnType = returnType;
            ContainingClass = containingClass;
            Overloads = new List<MethodTreeNode>();
            Parameters = new List<MethodParameter>();
        }