class Sass::Tree::DirectiveNode

@see Sass::Tree
they become {ImportNode}s and {CharsetNode}s, respectively.
‘@import` and `@charset` are special cases;
only CSS directives like `@media` and `@font-face` become {DirectiveNode}s.
are handled by their own nodes;
Directives known to Sass, like `@for` and `@debug`,
A static node representing an unproccessed Sass `@`-directive.

def initialize(value)

Parameters:
  • value (String) -- See \{#value}
def initialize(value)
  @value = value
  super()
end