Method: Sass::Script::Tree::Funcall#to_value

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

#to_value(args) (protected)

This method is factored out from _perform so that compass can override it with a cross-browser implementation for functions that require vendor prefixes in the generated css.



170
171
172
# File 'lib/sass/script/tree/funcall.rb', line 170

def to_value(args)
  Sass::Script::Value::String.new("#{name}(#{args.join(', ')})")
end