All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gems.sass-3.7.4.lib.sass.tree.charset_node.rb Maven / Gradle / Ivy

The newest version!
module Sass::Tree
  # A static node representing an unprocessed Sass `@charset` directive.
  #
  # @see Sass::Tree
  class CharsetNode < Node
    # The name of the charset.
    #
    # @return [String]
    attr_accessor :name

    # @param name [String] see \{#name}
    def initialize(name)
      @name = name
      super()
    end

    # @see Node#invisible?
    def invisible?
      true
    end
  end
end




© 2015 - 2024 Weber Informatics LLC | Privacy Policy