Class: JMESPath::Nodes::MultiSelectList Private

Inherits:
Node
  • Object
show all
Defined in:
lib/jmespath/nodes/multi_select_list.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.

Instance Method Summary collapse

Methods inherited from Node

#chains_with?, #hash_like?

Constructor Details

#initialize(children) ⇒ MultiSelectList

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 MultiSelectList.



5
6
7
# File 'lib/jmespath/nodes/multi_select_list.rb', line 5

def initialize(children)
  @children = children
end

Instance Method Details

#optimizeObject

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.



17
18
19
# File 'lib/jmespath/nodes/multi_select_list.rb', line 17

def optimize
  self.class.new(@children.map(&:optimize))
end

#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.



9
10
11
12
13
14
15
# File 'lib/jmespath/nodes/multi_select_list.rb', line 9

def visit(value)
  if value.nil?
    value
  else
    @children.map { |n| n.visit(value) }
  end
end