diff options
author | Stephen McCamant <smcc@mit.edu> | 1998-06-22 16:19:43 -0500 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-06-23 05:59:09 +0000 |
commit | 276493cb78ba879defeed992c4543a6fe30f98ce (patch) | |
tree | ef04c2b36b939e50c13cbfbaa78044caad45606a /ext | |
parent | 6990d9917c06c8c6c480c9c385d7d2ed536c8d24 (diff) | |
download | perl-276493cb78ba879defeed992c4543a6fe30f98ce.tar.gz |
Inheritance of B:: classes
Message-Id: <m0yoIgR-000EP2C@alias-2.pr.mcs.net>
p4raw-id: //depot/perl@1200
Diffstat (limited to 'ext')
-rw-r--r-- | ext/B/B.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/B/B.pm b/ext/B/B.pm index 8545c5c847..5897ef1013 100644 --- a/ext/B/B.pm +++ b/ext/B/B.pm @@ -31,7 +31,8 @@ use strict; @B::GV::ISA = 'B::PVMG'; @B::HV::ISA = 'B::PVMG'; @B::CV::ISA = 'B::PVMG'; -@B::IO::ISA = 'B::CV'; +@B::IO::ISA = 'B::PVMG'; +@B::FM::ISA = 'B::CV'; @B::OP::ISA = 'B::OBJECT'; @B::UNOP::ISA = 'B::OP'; |