Commit 3b54436d authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Make Extends Tag class return tagdef hash.

parent 5e125c9e
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -12,8 +12,10 @@ module JsDuck::Tag

    # @extends classname
    def parse(p)
      p.add_tag(:extends)
      p.maybe_ident_chain(:extends)
      {
        :tagname => :extends,
        :extends => p.hw && p.ident_chain,
      }
    end

    def process_doc(tags)