Sha256: 29ce18b9dce9b1a4275eee739162208a50c35f674d174d831ef0e4dad68d2c82

Contents?: true

Size: 428 Bytes

Versions: 2

Compression:

Stored size: 428 Bytes

Contents

require "jsduck/tag/tag"

module JsDuck::Tag
  # As of now there is no @css_mixin tag available in CSS files.  This
  # class just exists to define that we have a member type called
  # :css_mixin.
  class CssMixin < Tag
    def initialize
      @member_type = {
        :name => :css_mixin,
        :category => :method_like,
        :title => "CSS Mixins",
        :position => MEMBER_POS_CSS_MIXIN,
      }
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
jsduck-5.0.0.beta2 lib/jsduck/tag/css_mixin.rb
jsduck-5.0.0.beta01 lib/jsduck/tag/css_mixin.rb