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
The arguments to the mixin. @return [Array<Script::Node>]
A hash from keyword argument names to values. @return [{String => Script::Node}]
The name of the mixin. @return [String]
@param name [String] The name of the mixin @param args [Array<Script::Node>] See {#args} @param keywords [{String => Script::Node}] See {#keywords}
# File lib/sass/tree/mixin_node.rb, line 25 def initialize(name, args, keywords) @name = name @args = args @keywords = keywords super() end