Class: YARD::Tags::OptionTag
Instance Attribute Summary collapse
-
#name ⇒ String
inherited
from Tag
A name associated with the tag.
-
#object ⇒ CodeObjects::Base
inherited
from Tag
The associated object.
-
#pair ⇒ Object
Returns the value of attribute pair.
-
#tag_name ⇒ String
inherited
from Tag
The name of the tag.
- #text ⇒ String? inherited from Tag
- #types ⇒ Array<String>? inherited from Tag
Instance Method Summary collapse
-
#initialize(tag_name, name, pair) ⇒ OptionTag
constructor
A new instance of OptionTag.
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
#object ⇒ CodeObjects::Base Originally defined in class Tag
Returns the associated object
#pair ⇒ Object
Returns the value of attribute pair
4 5 6 |
# File 'lib/yard/tags/option_tag.rb', line 4 def pair @pair end |