Sha256: 7f190e3fa132bf5ee99e0de63f4da9e33c53ee8efe51433523a408ede5f5c922

Contents?: true

Size: 801 Bytes

Versions: 63

Compression:

Stored size: 801 Bytes

Contents

# frozen_string_literal: true
module YARD::CodeObjects
  # Represents an instance method of a module that was mixed into the class
  # scope of another namespace.
  #
  # @see MethodObject
  class ExtendedMethodObject
    instance_methods.each {|m| undef_method(m) unless m =~ /^__/ || m.to_sym == :object_id }

    # @return [Symbol] always +:class+
    def scope; :class end

    # Sets up a delegate for {MethodObject} obj.
    #
    # @param [MethodObject] obj the instance method to treat as a mixed in
    #   class method on another namespace.
    def initialize(obj) @del = obj end

    # Sends all methods to the {MethodObject} assigned in {#initialize}
    # @see #initialize
    # @see MethodObject
    def method_missing(sym, *args, &block) @del.__send__(sym, *args, &block) end
  end
end

Version data entries

63 entries across 62 versions & 9 rubygems

Version Path
kinetic_sdk-5.0.29 gems/yard-0.9.36/lib/yard/code_objects/extended_method_object.rb
kinetic_sdk-5.0.28 gems/yard-0.9.36/lib/yard/code_objects/extended_method_object.rb
direct7-0.0.18 vendor/bundle/ruby/2.7.0/gems/yard-0.9.34/lib/yard/code_objects/extended_method_object.rb
direct7-0.0.17 vendor/bundle/ruby/2.7.0/gems/yard-0.9.34/lib/yard/code_objects/extended_method_object.rb
direct7-0.0.16 vendor/bundle/ruby/2.7.0/gems/yard-0.9.34/lib/yard/code_objects/extended_method_object.rb
yard-0.9.37 lib/yard/code_objects/extended_method_object.rb
kinetic_sdk-5.0.27 gems/yard-0.9.36/lib/yard/code_objects/extended_method_object.rb
kinetic_sdk-5.0.26 gems/yard-0.9.36/lib/yard/code_objects/extended_method_object.rb
kinetic_sdk-5.0.25 gems/yard-0.9.25/lib/yard/code_objects/extended_method_object.rb
kinetic_sdk-5.0.24 gems/yard-0.9.25/lib/yard/code_objects/extended_method_object.rb
direct7-0.0.13 vendor/bundle/ruby/2.7.0/gems/yard-0.9.34/lib/yard/code_objects/extended_method_object.rb
yard-0.9.36 lib/yard/code_objects/extended_method_object.rb
yard-0.9.35 lib/yard/code_objects/extended_method_object.rb
direct7-0.0.12 vendor/bundle/ruby/2.7.0/gems/yard-0.9.34/lib/yard/code_objects/extended_method_object.rb
kinetic_sdk-5.0.23 gems/yard-0.9.25/lib/yard/code_objects/extended_method_object.rb
getargv-0.3.3-universal-darwin vendor/bundle/ruby/3.3.0/gems/yard-0.9.34/lib/yard/code_objects/extended_method_object.rb
direct7-0.0.11 vendor/bundle/ruby/2.7.0/gems/yard-0.9.34/lib/yard/code_objects/extended_method_object.rb
kinetic_sdk-5.0.22 gems/yard-0.9.25/lib/yard/code_objects/extended_method_object.rb
kinetic_sdk-5.0.21 gems/yard-0.9.25/lib/yard/code_objects/extended_method_object.rb
yard-0.9.34 lib/yard/code_objects/extended_method_object.rb