class XPath::Expression::Binary

Public Class Methods

new(left, right) click to toggle source
# File lib/xpath/expression.rb, line 18
def initialize(left, right)
  @left = wrap_xpath(left)
  @right = wrap_xpath(right)
end