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

Member() private method

private Member ( Context context, AST rootObject, AST memberName ) : Microsoft.JScript.Vsa
context Context
rootObject AST
memberName AST
return Microsoft.JScript.Vsa
      internal Member(Context context, AST rootObject, AST memberName)
        : base(context, memberName.context.GetCode()){
        this.fast = this.Engine.doFast;
        this.isImplicitWrapper = false;
        this.isNonVirtual = rootObject is ThisLiteral && ((ThisLiteral)rootObject).isSuper;
        this.lateBinding = null;
        this.memberNameContext = memberName.context;
        this.rootObject = rootObject;
        this.rootObjectInferredType = null;
        this.refLoc = null;
        this.temp = null;
      }