gems.sass-3.5.5.lib.sass.tree.keyframe_rule_node.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::Tree
class KeyframeRuleNode < Node
# The text of the directive after any interpolated SassScript has been resolved.
# Since this is only a static node, this is the only value property.
#
# @return [String]
attr_accessor :resolved_value
# @param resolved_value [String] See \{#resolved_value}
def initialize(resolved_value)
@resolved_value = resolved_value
super()
end
end
end
© 2015 - 2025 Weber Informatics LLC | Privacy Policy