module RuboCop::AST::BinaryOperatorNode

def lhs

Returns:
  • (Node) - the left hand side of the binary operation
def lhs
  node_parts[0]
end

def rhs

Returns:
  • (Node) - the right hand side of the binary operation
def rhs
  node_parts[1]
end