class AbstractSyntaxTreeKit::Node::MASGN

Attributes

lhs[R]
rhs[R]
splat[R]

Public Class Methods

new(node:, rhs:, lhs:, splat:) click to toggle source
Calls superclass method AbstractSyntaxTreeKit::Node::new
# File lib/astkit/node/masgn.rb, line 6
def initialize(node:, rhs:, lhs:, splat:)
  super(node)
  @rhs = rhs
  @lhs = lhs
  @splat = splat
end