class AbstractSyntaxTreeKit::Node::ARGSPUSH
Attributes
array[R]
element[R]
Public Class Methods
new(node:, array:, element:)
click to toggle source
Calls superclass method
AbstractSyntaxTreeKit::Node::new
# File lib/astkit/node/argspush.rb, line 6 def initialize(node:, array:, element:) super(node) @array = array @element = element end