diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-08-28 01:36:53 +0200 |
---|---|---|
committer | hv <hv@crypt.org> | 2002-08-29 13:29:43 +0000 |
commit | ece599bdb7307c953714bad8b5a320ffa2cd0857 (patch) | |
tree | 167557343fc2599ff027bce8ea9b1b8d58765a2d /ext/B/B.pm | |
parent | 444379fb158f55ef6465d6e50c03864ed09002d4 (diff) | |
download | perl-ece599bdb7307c953714bad8b5a320ffa2cd0857.tar.gz |
B::check_av() ; B::Deparse for CHECK blocks
Message-Id: <20020827233653.535bc211.rgarciasuarez@free.fr>
p4raw-id: //depot/perl@17804
Diffstat (limited to 'ext/B/B.pm')
-rw-r--r-- | ext/B/B.pm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/B/B.pm b/ext/B/B.pm index ed7cf7318c..564b6758cc 100644 --- a/ext/B/B.pm +++ b/ext/B/B.pm @@ -21,7 +21,7 @@ require Exporter; amagic_generation perlstring walkoptree_slow walkoptree walkoptree_exec walksymtable parents comppadlist sv_undef compile_stats timing_info - begin_av init_av end_av regex_padav); + begin_av init_av check_av end_av regex_padav); sub OPf_KIDS (); use strict; @@ -374,6 +374,10 @@ Returns the SV object corresponding to the C variable C<amagic_generation>. Returns the AV object (i.e. in class B::AV) representing INIT blocks. +=item check_av + +Returns the AV object (i.e. in class B::AV) representing CHECK blocks. + =item begin_av Returns the AV object (i.e. in class B::AV) representing BEGIN blocks. |