Skip to content
Snippets Groups Projects
Commit 8748ad7b authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Preserve the order in which meta-tags are specified.

parent 521edea5
No related branches found
No related tags found
No related merge requests found
...@@ -123,24 +123,34 @@ module JsDuck ...@@ -123,24 +123,34 @@ module JsDuck
# Instanciate all loaded MetaTag implementations # Instanciate all loaded MetaTag implementations
def load_meta_tags def load_meta_tags
# instanciate builtin meta tags # instantiate builtin meta tags
builtins = MetaTag.descendants @meta_tag_classes = MetaTag.descendants
builtins.each do |cls| @meta_tag_classes.each do |cls|
@meta_tags << cls.new @meta_tags << cls.new
end end
# Load user-defined meta-tags # Load user-defined meta-tags
@meta_tag_paths.each do |path| @meta_tag_paths.each do |path|
if File.directory?(path) if File.directory?(path)
Dir[path+"/**/*.rb"].each {|file| require(file) } Dir[path+"/**/*.rb"].each do |file|
require(file)
init_remaining_meta_tags
end
else else
require(path) require(path)
init_remaining_meta_tags
end end
end end
# Instanciate these meta tags. When builtin implementation for end
# @tag already exists, replace it with user-defined one.
# Instantiates meta tag classes that haven't been instantiated
# already. This is called after each meta-tags file is loaded so
# that the list of meta-tags will be in order specified from
# command line.
def init_remaining_meta_tags
MetaTag.descendants.each do |cls| MetaTag.descendants.each do |cls|
if !builtins.include?(cls) if !@meta_tag_classes.include?(cls)
@meta_tag_classes << cls
newtag = cls.new newtag = cls.new
@meta_tags = @meta_tags.find_all {|t| t.name != newtag.name } @meta_tags = @meta_tags.find_all {|t| t.name != newtag.name }
@meta_tags << newtag @meta_tags << newtag
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment