Class: VariableWithValue
- Defined in:
- lib/steamd/nodes/variable_node.rb
Overview
Variable, no modifier with a value ie: int x = 1;
Instance Method Summary collapse
-
#to_hash ⇒ Hash
Hash representation of the VariableWithValue.
Methods inherited from Variable
Instance Method Details
#to_hash ⇒ Hash
Hash representation of the VariableWithValue
102 103 104 105 |
# File 'lib/steamd/nodes/variable_node.rb', line 102 def to_hash hsh = super hsh.merge!(value: var_value.value) end |