Microsoft.JScript.ConstructorCall.ConstructorCall C# (CSharp) Method

ConstructorCall() private method

private ConstructorCall ( Context context, ASTList arguments, bool isSuperConstructorCall ) : System
context Context
arguments ASTList
isSuperConstructorCall bool
return System
      internal ConstructorCall(Context context, ASTList arguments, bool isSuperConstructorCall)
        : base(context) {
        this.isOK = false;
        this.isSuperConstructorCall = isSuperConstructorCall;
        if (arguments == null)
          this.arguments = new ASTList(context);
        else
          this.arguments = arguments;
      }