class YARD::Tags::RefTagList
Attributes
name[RW]
owner[RW]
tag_name[RW]
Public Class Methods
new(tag_name, owner, name = nil)
click to toggle source
# File lib/yard/tags/ref_tag_list.rb, line 7 def initialize(tag_name, owner, name = nil) @owner = CodeObjects::Proxy === owner ? owner : P(owner) @tag_name = tag_name.to_s @name = name end