Sha256: 60668dc3d6bfa9a5c4c42e9ba8dab7dad52d00e81d7d64e646a8d0710d0558ef

Contents?: true

Size: 581 Bytes

Versions: 61

Compression:

Stored size: 581 Bytes

Contents

# frozen_string_literal: true
# Handles the Init_Libname() method
class YARD::Handlers::C::InitHandler < YARD::Handlers::C::Base
  MATCH = /\A\s*(?:\S+\s+)*void\s+(?:[Ii]nit_)?(\w+)\s*/
  handles MATCH
  statement_class ToplevelStatement

  process do
    parse_block
    decl = statement.declaration[MATCH, 1]
    if decl
      ns = namespace_for_variable(decl)
      if ns.is_a?(YARD::CodeObjects::NamespaceObject) && ns.docstring.blank?
        if statement.comments
          register_docstring(ns, statement.comments.source, statement)
        end
      end
    end
  end
end

Version data entries

61 entries across 60 versions & 9 rubygems

Version Path
yard-0.9.31 lib/yard/handlers/c/init_handler.rb
yard-0.9.30 lib/yard/handlers/c/init_handler.rb
yard-0.9.29 lib/yard/handlers/c/init_handler.rb
devcycle-ruby-server-sdk-2.0.0 vendor/bundle/ruby/3.0.0/gems/yard-0.9.28/lib/yard/handlers/c/init_handler.rb
kinetic_sdk-5.0.20 gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb
yard-0.9.28 lib/yard/handlers/c/init_handler.rb
yard-0.9.27 lib/yard/handlers/c/init_handler.rb
yard-0.9.26 lib/yard/handlers/c/init_handler.rb
qiita_org-0.1.35 gems/ruby/2.7.0/gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb
qiita_org-0.1.34 gems/ruby/2.7.0/gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb
qiita_org-0.1.33 gems/ruby/2.7.0/gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb
qiita_org-0.1.32 gems/ruby/2.7.0/gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb
qiita_org-0.1.31 gems/ruby/2.7.0/gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb
qiita_org-0.1.30 gems/ruby/2.7.0/gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb
qiita_org-0.1.29 gems/ruby/2.7.0/gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb
qiita_org-0.1.28 gems/ruby/2.7.0/gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb
qiita_org-0.1.27 gems/ruby/2.7.0/gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb
qiita_org-0.1.26 gems/ruby/2.7.0/gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb
qiita_org-0.1.25 gems/ruby/2.7.0/gems/yard-0.9.25/lib/yard/handlers/c/init_handler.rb
yard-0.9.25 lib/yard/handlers/c/init_handler.rb