Babel.Compiler.AbstractIterSignature.AbstractIterSignature C# (CSharp) Méthode

AbstractIterSignature() public méthode

public AbstractIterSignature ( string name, TypedNodeList arguments, TypeSpecifier returnType, Location location ) : System
name string
arguments TypedNodeList
returnType TypeSpecifier
location Location
Résultat System
        public AbstractIterSignature(string name,
                                     TypedNodeList arguments,
                                     TypeSpecifier returnType,
                                     Location location)
            : base(name, arguments, returnType, location)
        {
            typeBuilder = null;
            constructor = null;
            moveNext = null;
            getCurrent = null;
            moveNextArguments = null;
            creator = null;
            InitArguments();
        }