This file is indexed.

/usr/lib/ruby/vendor_ruby/sass/tree/keyframe_rule_node.rb is in ruby-sass 3.4.6-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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