Class: JMESPath::Nodes::Function::FunctionName Private
- Inherits:
-
Object
- Object
- JMESPath::Nodes::Function::FunctionName
- Defined in:
- lib/jmespath/nodes/function.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 Attribute Summary collapse
- #name ⇒ Object readonly private
Instance Method Summary collapse
-
#initialize(name) ⇒ FunctionName
constructor
private
A new instance of FunctionName.
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.
33 34 35 |
# File 'lib/jmespath/nodes/function.rb', line 33 def initialize(name) @name = name end |
Instance Attribute Details
#name ⇒ Object (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.
31 32 33 |
# File 'lib/jmespath/nodes/function.rb', line 31 def name @name end |