Class: JsDuck::Tag::Hide

Inherits:
MetaTag show all
Defined in:
lib/jsduck/tag/hide.rb

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

Methods inherited from MetaTag

descendants, #format, #to_html, #to_value

Constructor Details

#initializeHide

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