Class: Sass::Tree::MixinDefNode

Inherits:
Node show all
Defined in:
lib/sass/tree/mixin_def_node.rb

Instance Attribute Summary

Attributes inherited from Node

#children, #filename, #line

Instance Method Summary collapse

Methods inherited from Node

#<<, #==, #last, #perform, #to_s, #to_sass

Constructor Details

#initialize(name, args, options) ⇒ MixinDefNode

Returns a new instance of MixinDefNode.



4
5
6
7
8
# File 'lib/sass/tree/mixin_def_node.rb', line 4

def initialize(name, args, options)
  @name = name
  @args = args
  super(options)
end