Class: JsDuck::Tag::Hide
Overview
Implementation of @hide tag.
Hides a member in parent class.
The core of the implementation is built into jsduck.
Instance Attribute Summary
Attributes inherited from MetaTag
#assets, #boolean, #context, #formatter, #key, #multiline, #name, #position, #signature
Instance Method Summary collapse
-
#initialize ⇒ Hide
constructor
A new instance of Hide.
Methods inherited from MetaTag
descendants, #format, #to_html, #to_value
Constructor Details
#initialize ⇒ Hide
Returns a new instance of Hide.
11 12 13 14 15 |
# File 'lib/jsduck/tag/hide.rb', line 11 def initialize @name = "hide" @key = :hide @boolean = true end |