Class: JMESPath::Nodes::Function::FunctionName Private

Inherits:
Object
  • Object
show all
Defined in:
lib/jmespath/nodes/function.rb

Overview

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.

API:

  • private

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ FunctionName

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

API:

  • private



33
34
35
# File 'lib/jmespath/nodes/function.rb', line 33

def initialize(name)
  @name = name
end

Instance Attribute Details

#nameObject (readonly)

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.

API:

  • private



31
32
33
# File 'lib/jmespath/nodes/function.rb', line 31

def name
  @name
end