Class: Melbourne::AST::SplatArray

Inherits:
SplatAssignment show all
Defined in:
lib/melbourne/ast/variables.rb

Instance Attribute Summary

Attributes inherited from SplatAssignment

#value

Attributes inherited from Node

#line

Instance Method Summary collapse

Methods inherited from Node

#ascii_graph

Constructor Details

#initialize(line, value, size) ⇒ SplatArray



121
122
123
124
125
# File 'lib/melbourne/ast/variables.rb', line 121

def initialize(line, value, size)
  @line = line
  @value = value
  @size = size
end