Method: Sass::Script::Tree::Funcall#children

Defined in:
lib/sass/script/tree/funcall.rb

#childrenArray<Node>

Returns the arguments to the function.

Returns:

See Also:



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