Sha256: f4db147714b42441a8e073d0561f81a1cc93edd8eeae731ffe356e8c3c18a6e5

Contents?: true

Size: 1.4 KB

Versions: 11

Compression:

Stored size: 1.4 KB

Contents

module Sass::Tree
  # A static node representing an unprocessed Sass `@`-directive.
  # Directives known to Sass, like `@for` and `@debug`,
  # are handled by their own nodes;
  # only CSS directives like `@media` and `@font-face` become {DirectiveNode}s.
  #
  # `@import` and `@charset` are special cases;
  # they become {ImportNode}s and {CharsetNode}s, respectively.
  #
  # @see Sass::Tree
  class DirectiveNode < Node
    # The text of the directive, `@` and all, with interpolation included.
    #
    # @return [Array<String, Sass::Script::Tree::Node>]
    attr_accessor :value

    # The text of the directive after any interpolated SassScript has been resolved.
    # Only set once \{Tree::Visitors::Perform} has been run.
    #
    # @return [String]
    attr_accessor :resolved_value

    # @see RuleNode#tabs
    attr_accessor :tabs

    # @see RuleNode#group_end
    attr_accessor :group_end

    # @param value [Array<String, Sass::Script::Tree::Node>] See \{#value}
    def initialize(value)
      @value = value
      @tabs = 0
      super()
    end

    # @param value [String] See \{#resolved_value}
    # @return [DirectiveNode]
    def self.resolved(value)
      node = new([value])
      node.resolved_value = value
      node
    end

    # @return [String] The name of the directive, including `@`.
    def name
      value.first.gsub(/ .*$/, '')
    end

    def bubbles?
      has_children
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
sass-3.3.14 lib/sass/tree/directive_node.rb
sass-3.3.13 lib/sass/tree/directive_node.rb
sass-3.3.12 lib/sass/tree/directive_node.rb
sass-3.3.11 lib/sass/tree/directive_node.rb
sass-3.3.10 lib/sass/tree/directive_node.rb
sass-3.3.9 lib/sass/tree/directive_node.rb
sass-3.3.8 lib/sass/tree/directive_node.rb
sass-3.3.7 lib/sass/tree/directive_node.rb
sass-3.3.6 lib/sass/tree/directive_node.rb
sass-3.3.5 lib/sass/tree/directive_node.rb
sass-3.3.4 lib/sass/tree/directive_node.rb