class JMESPath::Nodes::Node

Public Instance Methods

chains_with?(other) click to toggle source
# File lib/jmespath/nodes.rb, line 16
def chains_with?(other)
  false
end
hash_like?(value) click to toggle source
# File lib/jmespath/nodes.rb, line 8
def hash_like?(value)
  Hash === value || Struct === value
end
optimize() click to toggle source
# File lib/jmespath/nodes.rb, line 12
def optimize
  self
end
visit(value) click to toggle source
# File lib/jmespath/nodes.rb, line 5
def visit(value)
end