This file is indexed.

/usr/share/doc/libobject-event-perl/examples/simple_example is in libobject-event-perl 1.230-1.

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

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
#!/usr/bin/perl
package test;

use Object::Event;

our @ISA = qw/Object::Event/;

sub new {
   my $c = shift;
   my $self = $c->SUPER::new (@_);

   # register on the 'up' event and then call the 'down' event
   $self->reg_cb (up => sub { $self->event ('down'); });

   $self
}

sub up {
   my ($self) = @_;

   $self->event ('up'); # genereate an internal up event
}

package main;

my $t = test->new;

$t->reg_cb ( # reg_cb registers on a set of specific events
   down => sub {
      my ($t) = @_;
      print "Yay, we got down again...\n";
   }
);

$t->up; # test will emit the 'down' even we registered upon above