Sha256: a29f24974e8a762b107b2f798cdc7d20cc77412a8913995d05e3656df8154734

Contents?: true

Size: 351 Bytes

Versions: 1

Compression:

Stored size: 351 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module AST
    # A node extension for `send` nodes. This will be used in place of a plain
    # node when the builder constructs the AST, making its methods available
    # to all `send` nodes within RuboCop.
    class CsendNode < SendNode
      def send_type?
        false
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rubocop-ast-1.24.1 lib/rubocop/ast/node/csend_node.rb