lib/jsduck/class_formatter.rb in jsduck-3.10.5 vs lib/jsduck/class_formatter.rb in jsduck-3.11.0

- old
+ new

@@ -46,9 +46,10 @@ is_css_tag = m[:tagname] == :css_var || m[:tagname] == :css_mixin m[:html_type] = (@include_types && !is_css_tag) ? format_type(m[:type]) : m[:type] if m[:type] m[:params] = m[:params].map {|p| format_item(p, is_css_tag) } if m[:params] m[:return] = format_item(m[:return], is_css_tag) if m[:return] + m[:throws] = m[:throws].map {|t| format_item(t, is_css_tag) } if m[:throws] m[:properties] = m[:properties].map {|b| format_item(b, is_css_tag) } if m[:properties] m[:html_meta] = format_meta_data(m) m end