Sha256: a80a18e0a23c59c1db30bdb48412193dcb85eb67c02ac599366557eed3fc42ed

Contents?: true

Size: 366 Bytes

Versions: 32

Compression:

Stored size: 366 Bytes

Contents

# frozen_string_literal: true

class ProtectedMethod
  def call_protected
    protected_method
  end

  def to_s
    'Protected Method fixture'
  end

  class << self
    def call_protected
      protected_method
    end

    protected
  
    def protected_method
      'self.protected'
    end
  end

  protected
  
  def protected_method
    'protected'
  end
end

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
appmap-0.83.4 spec/fixtures/hook/protected_method.rb
appmap-0.83.3 spec/fixtures/hook/protected_method.rb
appmap-0.83.2 spec/fixtures/hook/protected_method.rb
appmap-0.83.1 spec/fixtures/hook/protected_method.rb
appmap-0.83.0 spec/fixtures/hook/protected_method.rb
appmap-0.82.0 spec/fixtures/hook/protected_method.rb
appmap-0.81.1 spec/fixtures/hook/protected_method.rb
appmap-0.81.0 spec/fixtures/hook/protected_method.rb
appmap-0.80.2 spec/fixtures/hook/protected_method.rb
appmap-0.80.1 spec/fixtures/hook/protected_method.rb
appmap-0.80.0 spec/fixtures/hook/protected_method.rb
appmap-0.79.0 spec/fixtures/hook/protected_method.rb
appmap-0.78.0 spec/fixtures/hook/protected_method.rb
appmap-0.77.4 spec/fixtures/hook/protected_method.rb
appmap-0.77.3 spec/fixtures/hook/protected_method.rb
appmap-0.77.2 spec/fixtures/hook/protected_method.rb
appmap-0.77.1 spec/fixtures/hook/protected_method.rb
appmap-0.77.0 spec/fixtures/hook/protected_method.rb
appmap-0.76.0 spec/fixtures/hook/protected_method.rb
appmap-0.75.0 spec/fixtures/hook/protected_method.rb