File: collection_node.rb

package info (click to toggle)
ruby-rubocop-ast 1.24.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,256 kB
  • sloc: ruby: 15,071; yacc: 90; makefile: 9
file content (16 lines) | stat: -rw-r--r-- 376 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module RuboCop
  module AST
    # A mixin that helps give collection nodes array polymorphism.
    module CollectionNode
      extend Forwardable

      ARRAY_METHODS =
        (Array.instance_methods - Object.instance_methods - [:to_a]).freeze
      private_constant :ARRAY_METHODS

      def_delegators :to_a, *ARRAY_METHODS
    end
  end
end