A node representing an `@import` rule that's importing plain CSS.
@see Sass::Tree
The media query for this rule, interspersed with {Sass::Script::Tree::Node}s representing `#{}`-interpolation. Any adjacent strings will be merged together.
@return [Array<String, Sass::Script::Tree::Node>]
The media query for this rule, without any unresolved interpolation. It's only set once {Tree::Visitors::Perform} has been run.
@return [Sass::Media::QueryList]
@see DirectiveNode#resolved_value
# File lib/sass/tree/css_import_node.rb, line 51 def resolved_value @resolved_value ||= begin str = "@import #{resolved_uri}" str << " #{resolved_query.to_css}" if resolved_query str end end
@see DirectiveNode#value
# File lib/sass/tree/css_import_node.rb, line 48 def value; raise NotImplementedError; end
Generated with the Darkfish Rdoc Generator 2.