Filename | /usr/lib/perl5/File/Spec.pm |
Statements | Executed 13 statements in 346µs |
Calls | P | F | Exclusive Time |
Inclusive Time |
Subroutine |
---|---|---|---|---|---|
1 | 1 | 1 | 22µs | 27µs | BEGIN@3 | File::Spec::
1 | 1 | 1 | 14µs | 86µs | BEGIN@4 | File::Spec::
Line | State ments |
Time on line |
Calls | Time in subs |
Code |
---|---|---|---|---|---|
1 | package File::Spec; | ||||
2 | |||||
3 | 3 | 43µs | 2 | 32µs | # spent 27µs (22+5) within File::Spec::BEGIN@3 which was called:
# once (22µs+5µs) by XML::SAX::BEGIN@16 at line 3 # spent 27µs making 1 call to File::Spec::BEGIN@3
# spent 5µs making 1 call to strict::import |
4 | 3 | 129µs | 2 | 158µs | # spent 86µs (14+72) within File::Spec::BEGIN@4 which was called:
# once (14µs+72µs) by XML::SAX::BEGIN@16 at line 4 # spent 86µs making 1 call to File::Spec::BEGIN@4
# spent 72µs making 1 call to vars::import |
5 | |||||
6 | 1 | 1µs | $VERSION = '3.2701'; | ||
7 | 1 | 21µs | $VERSION = eval $VERSION; # spent 4µs executing statements in string eval | ||
8 | |||||
9 | 1 | 8µs | my %module = (MacOS => 'Mac', | ||
10 | MSWin32 => 'Win32', | ||||
11 | os2 => 'OS2', | ||||
12 | VMS => 'VMS', | ||||
13 | epoc => 'Epoc', | ||||
14 | NetWare => 'Win32', # Yes, File::Spec::Win32 works on NetWare. | ||||
15 | symbian => 'Win32', # Yes, File::Spec::Win32 works on symbian. | ||||
16 | dos => 'OS2', # Yes, File::Spec::OS2 works on DJGPP. | ||||
17 | cygwin => 'Cygwin'); | ||||
18 | |||||
19 | |||||
20 | 1 | 3µs | my $module = $module{$^O} || 'Unix'; | ||
21 | |||||
22 | 1 | 115µs | require "File/Spec/$module.pm"; | ||
23 | 1 | 13µs | @ISA = ("File::Spec::$module"); | ||
24 | |||||
25 | 1 | 13µs | 1; | ||
26 | |||||
27 | __END__ |