AST.RShiftAssign.ConstructBinaryOp C# (CSharp) Method

ConstructBinaryOp() public method

public ConstructBinaryOp ( ) : Expr
return Expr
        public override Expr ConstructBinaryOp() => RShift.Create(this.Left, this.Right);
    }