Sha256: 30e72acb42b0ba54ea625326845d3da1be9c468bbde84c113fd16a2f246ba7b6

Contents?: true

Size: 440 Bytes

Versions: 20

Compression:

Stored size: 440 Bytes

Contents

# frozen_string_literal: true

# This class defines the private API of the Lookup Key Recorder support.
# @api private
#
class Puppet::Pops::Lookup::KeyRecorder
  def initialize
  end

  # rubocop:disable Naming/MemoizedInstanceVariableName
  def self.singleton
    @null_recorder ||= new
  end
  # rubocop:enable Naming/MemoizedInstanceVariableName

  # Records a key
  # (This implementation does nothing)
  #
  def record(key)
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
puppet-8.10.0 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.10.0-x86-mingw32 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.10.0-x64-mingw32 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.10.0-universal-darwin lib/puppet/pops/lookup/key_recorder.rb
puppet-8.9.0 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.9.0-x86-mingw32 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.9.0-x64-mingw32 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.9.0-universal-darwin lib/puppet/pops/lookup/key_recorder.rb
puppet-8.8.1 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.8.1-x86-mingw32 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.8.1-x64-mingw32 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.8.1-universal-darwin lib/puppet/pops/lookup/key_recorder.rb
puppet-8.7.0 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.7.0-x86-mingw32 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.7.0-x64-mingw32 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.7.0-universal-darwin lib/puppet/pops/lookup/key_recorder.rb
puppet-8.6.0 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.6.0-x86-mingw32 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.6.0-x64-mingw32 lib/puppet/pops/lookup/key_recorder.rb
puppet-8.6.0-universal-darwin lib/puppet/pops/lookup/key_recorder.rb