Class: JMESPath::Nodes::LiteralRightEqCondition Private

Inherits:
EqCondition show all
Defined in:
lib/jmespath/nodes/condition.rb

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Constant Summary

Constants inherited from ComparatorCondition

ComparatorCondition::COMPARATOR_TO_CONDITION

Instance Method Summary collapse

Methods inherited from EqCondition

#optimize

Methods inherited from Node

#chains_with?, #hash_like?, #optimize

Constructor Details

#initialize(left, right, child) ⇒ LiteralRightEqCondition

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of LiteralRightEqCondition.



59
60
61
62
# File 'lib/jmespath/nodes/condition.rb', line 59

def initialize(left, right, child)
  super
  @right = @right.value
end

Instance Method Details

#visit(value) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



64
65
66
# File 'lib/jmespath/nodes/condition.rb', line 64

def visit(value)
  @left.visit(value) == @right ? @child.visit(value) : nil
end