Method: Sass::Script::Tree::Funcall#children
- Defined in:
- lib/sass/script/tree/funcall.rb
#children ⇒ Array<Node>
Returns the arguments to the function.
103 104 105 106 107 108 |
# File 'lib/sass/script/tree/funcall.rb', line 103
def children
res = @args + @keywords.values
res << @splat if @splat
res << @kwarg_splat if @kwarg_splat
res
end
|