Method: JsDuck::DocParser#boolean_at_tag

Defined in:
lib/jsduck/doc_parser.rb

#boolean_at_tag(regex, propname) ⇒ Object

Used to match @private, @ignore, @hide, …



433
434
435
436
437
# File 'lib/jsduck/doc_parser.rb', line 433

def boolean_at_tag(regex, propname)
  match(regex)
  add_tag(propname)
  skip_white
end