class JsDuck::Tag::Ftype

Public Class Methods

new() click to toggle source
# File lib/jsduck/tag/ftype.rb, line 5
def initialize
  @pattern = "ftype"
  @repeatable = true
end

Public Instance Methods

parse_doc(p, pos) click to toggle source

@ftype name

# File lib/jsduck/tag/ftype.rb, line 11
def parse_doc(p, pos)
  {
    :tagname => :aliases,
    :name => parse_alias_shorthand(p, "feature")
  }
end