Searched refs:dumpValue (Results 1 - 4 of 4) sorted by relevance
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ |
H A D | Dumpvalue.t | 253 $d->dumpValue(undef); 254 is( $out->read, "undef\n", 'dumpValue caught undef value okay' ); 255 $d->dumpValue($foo); 256 is( $out->read, "'one'\n", 'dumpValue worked' ); 257 $d->dumpValue(@foo); 258 is( $out->read, "'two'\n", 'dumpValue worked on array' ); 259 $d->dumpValue(\$foo); 260 is( $out->read, "-> 'one'\n", 'dumpValue worked on scalar ref' );
|
H A D | Dumpvalue.pm | 57 sub dumpValue { subroutine 59 die "usage: \$dumper->dumpValue(value)" unless @_ == 1; 493 $dumper->dumpValue(\*::); 577 =item dumpValue 579 $dumper->dumpValue($value); 580 $dumper->dumpValue([$value1, $value2]); 588 Same as C< $dumper->dumpValue([$value1, $value2]); >.
|
H A D | dumpvar.pl | 28 sub main::dumpValue {
|
H A D | perl5db.pl | 5283 It then checks to see if the subroutine C<main::dumpValue> is now defined 5285 localizes the globals necessary for things to be sane when C<main::dumpValue()> 5293 C<dumpValue()> is then called if possible; if not, C<dumpit()>just prints a 5316 unless (defined &main::dumpValue) { 5322 if (defined &main::dumpValue) { 5329 &main::dumpValue($v, $maxdepth); 5330 } ## end if (defined &main::dumpValue)
|
Completed in 32 milliseconds