File: keyframe_rule_node.rb

package info (click to toggle)
ruby-sass 3.7.4-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,396 kB
  • sloc: ruby: 32,443; sh: 26; makefile: 25
file content (15 lines) | stat: -rw-r--r-- 438 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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