![JAR search and dependency download from the Maven repository](/logo.png)
gems.sass-3.7.4.lib.sass.script.value.callable.rb Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sass-maven-plugin Show documentation
Show all versions of sass-maven-plugin Show documentation
A Maven Plugin that compiles Sass files.
The newest version!
module Sass::Script::Value
# A SassScript object representing a null value.
class Callable < Base
# Constructs a Callable value for use in SassScript.
#
# @param callable [Sass::Callable] The callable to be used when the
# callable is called.
def initialize(callable)
super(callable)
end
def to_s(opts = {})
raise Sass::SyntaxError.new("#{to_sass} isn't a valid CSS value.")
end
def inspect
to_sass
end
# @abstract
def to_sass
Sass::Util.abstract(self)
end
end
end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy