class Riml::BinaryOperatorNode

Public Instance Methods

ignorecase_capable_operator?(operator) click to toggle source
# File lib/riml/nodes.rb, line 451
def ignorecase_capable_operator?(operator)
  IGNORECASE_CAPABLE_OPERATORS.include?(operator)
end
operand1() click to toggle source
# File lib/riml/nodes.rb, line 445
def operand1() operands[0] end
operand1=(val) click to toggle source
# File lib/riml/nodes.rb, line 446
def operand1=(val) operands[0] = val end
operand2() click to toggle source
# File lib/riml/nodes.rb, line 448
def operand2() operands[1] end
operand2=(val) click to toggle source
# File lib/riml/nodes.rb, line 449
def operand2=(val) operands[1] = val end