File: //usr/share/rubygems-integration/all/gems/sass-3.7.4/lib/sass/script/value/function.rb
module Sass::Script::Value
# A SassScript object representing a function.
class Function < Callable
# Constructs a Function value for use in SassScript.
#
# @param function [Sass::Callable] The callable to be used when the
# function is invoked.
def initialize(function)
unless function.type == "function"
raise ArgumentError.new("A callable of type function was expected.")
end
super
end
def to_sass
%{get-function("#{value.name}")}
end
end
end