Microsoft.JScript.Class.AllocateImplicitDefaultConstructor C# (CSharp) Method

AllocateImplicitDefaultConstructor() private method

private AllocateImplicitDefaultConstructor ( ) : void
return void
      private void AllocateImplicitDefaultConstructor(){
        this.implicitDefaultConstructor = new FunctionObject(".ctor", new ParameterDeclaration[0], null, new Block(this.context), 
          new FunctionScope(this.classob, true), this.classob, this.context, MethodAttributes.Virtual|MethodAttributes.NewSlot|MethodAttributes.Public, null, true);
        this.implicitDefaultConstructor.isImplicitCtor = true; 
        this.implicitDefaultConstructor.isConstructor = true;  
        this.implicitDefaultConstructor.proto = this.classob;
      }