This file is indexed.

/usr/lib/ruby/vendor_ruby/inline_method_name_mapping.rb is in ruby-inline 3.12.2-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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
module MethodNameMapping
  @@method_map = {
    'bang'         => '!',
    'percent'      => '%',
    'and'          => '&',
    'times'        => '*',
    'times2'       => '**',
    'plus'         => '+',
    'minus'        => '-',
    'div'          => '/',
    'lt'           => '<',
    'lte'          => '<=',
    'spaceship'    => '<=>',
    'lt2'          => '<<',
    'equals2'      => '==',
    'equals3'      => '===',
    'equalstilde'  => '=~',
    'gt'           => '>',
    'ge'           => '>=',
    'gt2'          => '>>',
    'unary_plus'   => '+@',
    'unary_minus'  => '-@',
    'index'        => '[]',
    'index_equals' => '[]=',
    'carat'        => '^',
    'or'           => '|',
    'tilde'        => '~',
  }

  @@mapped_re = @@method_map.values.map {|s| Regexp.escape(s)}.join("|")

  def to_ruby(name)
    name = name.to_s.dup
    is_class_method = name.sub!(/^class_/, '')

    if @@method_map.has_key?(name)
      name=@@method_map[name]
    elsif name.sub!(/_equals(_.*)?$/, '=')
    elsif name.sub!(/_bang(_.*)?$/, '!')
    elsif name.sub!(/_eh(_.*)?$/, '?')
    elsif name =~ /(.*?)_/ and @@method_map.has_key? $1
      name = @@method_map[$1]
    end
    name = 'self.' + name if is_class_method

    return name
  end
end