Babel.Compiler.AbstractRoutineSignature.AbstractRoutineSignature C# (CSharp) Method

AbstractRoutineSignature() public method

public AbstractRoutineSignature ( string name, TypedNodeList arguments, TypeSpecifier returnType, Location location ) : System
name string
arguments TypedNodeList
returnType TypeSpecifier
location Location
return System
        public AbstractRoutineSignature(string name,
                                        TypedNodeList arguments,
                                        TypeSpecifier returnType,
                                        Location location)
            : base(location)
        {
            this.name = name;
            this.arguments = arguments;
            this.returnType = returnType;
            this.methodBuilder = null;
            InitArguments();
        }