Class Sass::Tree::MixinNode
In: lib/sass/tree/mixin_node.rb
Parent: Node

A static node representing a mixin include. When in a static tree, the sole purpose is to wrap exceptions to add the mixin to the backtrace.

@see Sass::Tree

Methods

new   subnodes  

Attributes

args  [R]  The arguments to the mixin. @return [Array<Script::Node>]
keywords  [R]  A hash from keyword argument names to values. @return [{String => Script::Node}]
name  [R]  The name of the mixin. @return [String]

Public Class methods

@param name [String] The name of the mixin @param args [Array<Script::Node>] See \{args} @param keywords [{String => Script::Node}] See \{keywords}

Public Instance methods

Returns sub nodes that are not tree children.

[Validate]