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

ClassDefinition() public method

public ClassDefinition ( string name, ClassKind kind, TypedNodeList typeParameters, TypedNodeList supertypes, TypedNodeList subtypes, Location location ) : System
name string
kind ClassKind
typeParameters TypedNodeList
supertypes TypedNodeList
subtypes TypedNodeList
location Location
return System
        public ClassDefinition(string name, ClassKind kind,
                               TypedNodeList typeParameters,
                               TypedNodeList supertypes,
                               TypedNodeList subtypes,
                               Location location)
            : base(location)
        {
            this.name = name;
            this.kind = kind;
            this.typeParameters = typeParameters;
            this.supertypes = supertypes;
            this.subtypes = subtypes;
            typeBuilder = null;
            typeData = null;
            constructor = null;
            staticConstructor = null;
            staticConstructorIL = null;
            adapters = new ArrayList();
        }

Same methods

ClassDefinition::ClassDefinition ( string name, ClassKind kind, TypedNodeList typeParameters, TypedNodeList supertypes, Location location ) : System