lib/rubocop/ast/node/mlhs_node.rb



# frozen_string_literal: true

module RuboCop
  module AST
    # A node extension for `mlhs` nodes.
    # This will be used in place of a plain node when the builder constructs
    # the AST, making its methods available to all assignment nodes within RuboCop.
    class MlhsNode < Node
      # Returns all the assignment nodes on the left hand side (LHS) of a multiple assignment.
      # These are generally assignment nodes (`lvasgn`, `ivasgn`, `cvasgn`, `gvasgn`, `casgn`)
      # but can also be `send` nodes in case of `foo.bar, ... =` or `foo[:bar], ... =`.
      #
      # @return [Array<Node>] the assignment nodes of the multiple assignment LHS
      def assignments
        child_nodes.flat_map do |node|
          if node.splat_type?
            node.child_nodes.first
          elsif node.mlhs_type?
            node.assignments
          else
            node
          end
        end
      end
    end
  end
end