Method: JMESPath::Nodes::Function#initialize

Defined in:
lib/jmespath/nodes/function.rb

#initialize(children, options = {}) ⇒ Function

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



7
8
9
10
11
# File 'lib/jmespath/nodes/function.rb', line 7

def initialize(children, options = {})
  @children = children
  @options = options
  @disable_visit_errors = @options[:disable_visit_errors]
end