Class: YARD::Tags::OptionTag

Inherits:
Tag
  • Object
show all
Defined in:
lib/yard/tags/option_tag.rb

Instance Attribute Summary collapse

Attributes inherited from Tag

#name, #object, #tag_name, #text, #types

Instance Method Summary collapse

Methods inherited from Tag

#type

Constructor Details

#initialize(tag_name, name, pair) ⇒ OptionTag

Returns a new instance of OptionTag.



6
7
8
9
# File 'lib/yard/tags/option_tag.rb', line 6

def initialize(tag_name, name, pair)
  super(tag_name, nil, nil, name)
  @pair = pair
end

Instance Attribute Details

#pairObject

Returns the value of attribute pair.



4
5
6
# File 'lib/yard/tags/option_tag.rb', line 4

def pair
  @pair
end