This file is indexed.

/usr/lib/ruby/vendor_ruby/gir_ffi/builders/struct_builder.rb is in ruby-gir-ffi 0.9.0-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
16
17
18
19
20
21
22
23
24
25
26
27
require 'gir_ffi/builders/boxed_builder'
require 'gir_ffi/struct_base'

module GirFFI
  module Builders
    # Implements the creation of a class representing a Struct.
    class StructBuilder < BoxedBuilder
      def layout_superclass
        FFI::Struct
      end

      def superclass
        if info.gtype_struct?
          # HACK: Inheritance chain is not expressed in GObject's code correctly.
          if info.full_type_name == 'GObject::InitiallyUnownedClass'
            return GObject::ObjectClass
          else
            type = fields.first.field_type
            return type.tag_or_class if type.tag == :interface
          end
        end

        StructBase
      end
    end
  end
end