Sha256: 3d0386ca71c8b50d741b220e55ed0cf0a00fe8e44df6d8e4609f62fc8201b2dc

Contents?: true

Size: 679 Bytes

Versions: 6

Compression:

Stored size: 679 Bytes

Contents

# frozen_string_literal: true

# Implements the base code object.
class PuppetStrings::Yard::CodeObjects::Base < YARD::CodeObjects::NamespaceObject
  # Allocates a new code object.
  # @param [Array] args The arguments to initialize the code object with.
  # @return Returns the code object.
  def self.new(*args)
    # Skip the super class' implementation because it detects :: in names and this will cause namespaces in the output we don't want
    object = Object.class.instance_method(:new).bind(self).call(*args)
    existing = YARD::Registry.at(object.path)
    object = existing if existing && existing.class == self
    yield(object) if block_given?
    object
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
puppet-strings-3.0.1 lib/puppet-strings/yard/code_objects/base.rb
puppet-strings-3.0.0 lib/puppet-strings/yard/code_objects/base.rb
puppet-strings-2.9.0 lib/puppet-strings/yard/code_objects/base.rb
puppet-strings-2.8.0 lib/puppet-strings/yard/code_objects/base.rb
puppet-strings-2.7.0 lib/puppet-strings/yard/code_objects/base.rb
puppet-strings-2.6.0 lib/puppet-strings/yard/code_objects/base.rb