I like Bart's
Re: It's one of the reasons I wrote vars::i idea for an
isa.pm so much, that I worked a bit more on it. The only thing I have against it, is that you would need to say "use isa qw(Bar)". It should be possible to do this shorter. Something like:
require isa; # this should go away once this is in the core
package Foo;
isa Bar;
I came up with the following (temporary) implementation:
package isa;
use strict;
use warnings;
BEGIN {
no warnings 'redefine';
my $old = \&UNIVERSAL::isa;
*UNIVERSAL::isa = sub {
goto &$old if defined wantarray;
no strict 'refs';
push @{caller().'::ISA'}, @_;
} #UNIVERSAL::isa
}
1;
The code depends on giving another meaning of the UNIVERSAL::isa subroutine, namely when it is being called in void context: in that case it will set the caller's @ISA array with the parameters passed.
I like the syntax this gives. It has its limitations though, as you can list only one inheritance at a time. That's because the syntax of:
isa Bar;
actually is the indirect object syntax for:
Bar->isa;
I wonder what other Monks think of this: is it a good idea? or is it an abomination? To me, it is one of the first "natural" uses of indirect object syntax.
Liz
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.