Class: ReturnValue

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value) ⇒ ReturnValue

Returns a new instance of ReturnValue.



178
179
180
# File 'lib/nodes.rb', line 178

def initialize(value)
  @value = value
end

Instance Attribute Details

#valueObject

Returns the value of attribute value.



177
178
179
# File 'lib/nodes.rb', line 177

def value
  @value
end