gems.sass-3.5.5.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.
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