Class: JMESPath::Nodes::Literal Private

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

Instance Method Summary collapse

Methods inherited from Node

#chains_with?, #hash_like?, #optimize

Constructor Details

#initialize(value) ⇒ Literal

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



7
8
9
# File 'lib/jmespath/nodes/literal.rb', line 7

def initialize(value)
  @value = value
end

Instance Attribute Details

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



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

def value
  @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.



11
12
13
# File 'lib/jmespath/nodes/literal.rb', line 11

def visit(value)
  @value
end