AnyEvent-JSONRPC

 view release on metacpan or  search on metacpan

inc/Spiffy.pm  view on Meta::CPAN

14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
my $stack_frame = 0;
my $dump = 'yaml';
my $bases_map = {};
 
sub WWW; sub XXX; sub YYY; sub ZZZ;
 
# This line is here to convince "autouse" into believing we are autousable.
sub can {
    ($_[1] eq 'import' and caller()->isa('autouse'))
        ? \&Exporter::import        # pacify autouse's equality test
        : $_[0]->SUPER::can($_[1])  # normal case
}
 
# TODO
#
# Exported functions like field and super should be hidden so as not to
# be confused with methods that can be inherited.
#
 
sub new {
    my $class = shift;



( run in 1.759 second using v1.01-cache-2.11-cpan-26ccb49234f )