class Sass::Tree::DirectiveNode
A static node representing an unproccessed 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
Attributes
The text of the directive after any interpolated SassScript has been resolved. Only set once {Tree::Visitors::Perform} has been run.
@return [String]
The text of the directive, ‘@` and all, with interpolation included.
@return [Array<String, Sass::Script::Node
>]
Public Class Methods
@param value [Array<String, Sass::Script::Node
>] See {#value}
# File lib/sass/tree/directive_node.rb, line 24 def initialize(value) @value = value super() end
@param value [String] See {#resolved_value} @return [DirectiveNode]
# File lib/sass/tree/directive_node.rb, line 31 def self.resolved(value) node = new([value]) node.resolved_value = value node end
Public Instance Methods
@return [String] The name of the directive, including ‘@`.
# File lib/sass/tree/directive_node.rb, line 38 def name value.first.gsub(/ .*$/, '') end