From e68176796f3abc13ad7c7d97395f4de4be1116ac Mon Sep 17 00:00:00 2001 From: Rene Saarsoo Date: Wed, 9 Jan 2013 13:08:59 +0200 Subject: [PATCH] Move detection of extends from DocAst to Tag::Extends. --- lib/jsduck/doc_ast.rb | 5 ----- lib/jsduck/tag/extends.rb | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/jsduck/doc_ast.rb b/lib/jsduck/doc_ast.rb index 11a9eb32..87c99fb9 100644 --- a/lib/jsduck/doc_ast.rb +++ b/lib/jsduck/doc_ast.rb @@ -43,7 +43,6 @@ module JsDuck :tagname => :class, :name => detect_name(:class, doc_map), :doc => detect_doc(docs), - :extends => detect_extends(doc_map), :mixins => detect_list(:mixins, doc_map), :alternateClassNames => detect_list(:alternateClassNames, doc_map), :aliases => detect_aliases(doc_map), @@ -155,10 +154,6 @@ module JsDuck extract(doc_map, tagname, :type) || extract(doc_map, :type, :type) end - def detect_extends(doc_map) - extract(doc_map, :extends, :extends) - end - def detect_default(tagname, doc_map) extract(doc_map, tagname, :default) end diff --git a/lib/jsduck/tag/extends.rb b/lib/jsduck/tag/extends.rb index 52e12413..1bd8d5e4 100644 --- a/lib/jsduck/tag/extends.rb +++ b/lib/jsduck/tag/extends.rb @@ -5,6 +5,7 @@ module JsDuck::Tag class Extends < Tag def initialize @pattern = ["extend", "extends"] + @key = :extends @ext_define_pattern = "extend" @ext_define_default = {:extends => "Ext.Base"} end @@ -15,6 +16,10 @@ module JsDuck::Tag p.maybe_ident_chain(:extends) end + def process_doc(tags) + tags[0][:extends] + end + def parse_ext_define(cls, ast) cls[:extends] = JsDuck::AstUtils.make_string(ast) end -- GitLab