in reply to Re: Slow evolution of Perl = Perl is a closed Word
in thread Slow evolution of Perl = Perl is a closed Word
To have a good IDE for Perl 5 is difficult, since Perl 5 has a very complex syntax, especially because Perl 5 depends of runtime states to be really parsed.I do not believe the later statement to be true. Can you cite credible sources for this assertion?
Of course it is true. The whole reason BEGIN blocks were created was so that useing a module could force the module's run time to happen before the remainder of the useing code's compile time so that the run-time states could impact how the remaining Perl code is parsed.
In the general case, reliably parsing Perl code that uses a module requires one to run the Perl code (and perhaps even XS code) of the used module. This is also true for BEGIN blocks not implied by use statements.
And the PPI documentation covers quite a bit of this. So if you use PPI for implementing your IDE, then your IDE will simply not be able to handle some Perl code. For many people, the Perl code that they deal with is rarely such that PPI actually fails on it (how fully and correctly PPI parses it is surely more variable, though I haven't seen good data on this). In fact, the author of PPI reports that almost everything on CPAN (excluding some things) can be parsed as well as PPI tries to.
But trying to pretend that the parsing problem doesn't in fact exist is just silly, IMHO.
- tye
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Slow evolution of Perl = Perl is a closed Word (use)
by erroneousBollock (Curate) on Sep 01, 2007 at 05:57 UTC | |
by bart (Canon) on Sep 01, 2007 at 22:45 UTC | |
by erroneousBollock (Curate) on Sep 02, 2007 at 06:06 UTC | |
by ysth (Canon) on Sep 02, 2007 at 20:44 UTC | |
by bart (Canon) on Sep 04, 2007 at 11:18 UTC | |
by tye (Sage) on Sep 01, 2007 at 06:20 UTC | |
by erroneousBollock (Curate) on Sep 01, 2007 at 06:38 UTC | |
by ysth (Canon) on Sep 02, 2007 at 07:14 UTC |