Sha256: aad232e3a9bf767ce92e1a6f018321ba2c855559861588846a9f14a72d841260

Contents?: true

Size: 654 Bytes

Versions: 21

Compression:

Stored size: 654 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module AST
    # A node extension for `return` nodes. This will be used in place of a
    # plain node when the builder constructs the AST, making its methods
    # available to all `return` nodes within RuboCop.
    class ReturnNode < Node
      include MethodDispatchNode
      include ParameterizedNode

      # Returns the arguments of the `return`.
      #
      # @return [Array] The arguments of the `return`.
      def arguments
        if node_parts.one? && node_parts.first.begin_type?
          node_parts.first.children
        else
          node_parts
        end
      end
    end
  end
end

Version data entries

21 entries across 19 versions & 5 rubygems

Version Path
rubocop-0.76.0 lib/rubocop/ast/node/return_node.rb