This file is indexed.

/usr/lib/ruby/vendor_ruby/sass/scss.rb is in ruby-sass 3.1.15-1.

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
16
17
require 'sass/scss/rx'
require 'sass/scss/script_lexer'
require 'sass/scss/script_parser'
require 'sass/scss/parser'
require 'sass/scss/sass_parser'
require 'sass/scss/static_parser'
require 'sass/scss/css_parser'

module Sass
  # SCSS is the CSS syntax for Sass.
  # It parses into the same syntax tree as Sass,
  # and generates the same sort of output CSS.
  #
  # This module contains code for the parsing of SCSS.
  # The evaluation is handled by the broader {Sass} module.
  module SCSS; end
end