NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Huh? (Score:1)
I don't buy it:
Re: (Score:1)
Hrm, point for you. Bad wording on my side. What's the thing called methods are looked up from then? :)
I honestly thought a
delete $Foo::{bar}will remove the symbol table entry.Thanks again!
Ordinary morality is for ordinary people. -- Aleister Crowley
Re: (Score:1)
You misunderstood what chromatic said. He demonstrated that Perl does not have compile-time binding, contrary to what you are saying. Decompiling shows that the invocation of
doublein thenewmethod is indirected via the package. If you remove the entry fordoublefrom the package, the function call will NOT work.Sorry, but your approach won’t work.
Here’s a pattern for you to read carefully and chew on:
Re: (Score:1)
So, you're saying what? I can understand that as either
And btw: You call that a pattern? I call that a work-around :) And, just FYI, you might want to stay away from patronising phrases like "Here’s a pattern for you to read carefully and chew on." Because it really decreases my motivation to answer.
Ordinary morality is for ordinary people. -- Aleister Crowley
Re: (Score:1)
You said:
It’s bad wording on your part to say the functions are bound in the code, because they’re not; they’re always looked up from the symbol table.
Interestingly, what you’re doing shouldn’t work – but it does! Apparently the
%main::-type hashes aren’t actually an interface to the symbol table, they’re just a one-way mirror:Re: (Score:1)
Of course. Did you honestly think I sent some code off to CPAN without even _trying_ first? :)
Maybe I will post it there if nobody else does.
That might be what you (and MJD) think, but I clearly see a difference betw
Ordinary morality is for ordinary people. -- Aleister Crowley
Re: (Score:1)
No, it’s not. A pattern is a common, complex arrangement of language primitives that has to be aligned just so in order to work; which arrangement addresses a particular problem commonly encountered when using the language.
Far from everything in a program does meets this definition. Most notably, the solution to the problem addressed by the program in its essence is not a pattern, by definition, although if it’s non-trivial you will ofte
Re: (Score:1)
Ordinary morality is for ordinary people. -- Aleister Crowley
Re: (Score:2)
CPAN modules are not pragmas (Score:1)
Re: (Score:1)
It hadn't occured to me yet and, in fact, I had to look for a pretty long time before I found the term "default module" in perlglossary for pragma. I think you mean that sentence. That was a fault on my part, so sorry for that.
But there seems to be oil all over the ocean already: autorequire [cpan.org], version [cpan.org] (will be ok then in 5.9 I guess), fake [cpan.org], all [cpan.org],
Ordinary morality is for ordinary people. -- Aleister Crowley
Re: (Score:1)
Re: (Score:1)
No worries, I'm not feeling singled out :) Though in my opinion it would have been more confusing to name it Namespace::Clean and affect the local package the way it does. I, and I had the impression that many others too, understand the term 'pragma' more as 'altering behaviour or environment' vs. the 'providing code' situation of library modules.
Ordinary morality is for ordinary people. -- Aleister Crowley
This is a bug (Score:1)
There's two related bugs here. If you localize or delete the stash a function exists in, the GV pointed to by the pp_gv opcode has a pointer to the original stash. This makes it oblivious to wholesale replacement of the stash.
It appears the other bug is that that the pp_gv opcode has a pointer to the GV and retain