Given how flexible Perl's syntax is, how realistic is it to expect that
with Perl 6 someone could create a proper IDE for Perl that handled
large projects with many classes, and which would make it easy to do
basic refactoring of code?
(For those not familiar with refactoring, it means a methodical
re-writing of code in ways that improve it "internally" without
changing its "external" behavior, a classic example would be creating a
new subroutine to replace 3 or more chunks of code that are basically
the same. See: http://www.refactoring.com/)
Eclipse is available at http://www.eclipse.org/ and the Eclipse Perl
Integration project (EPIC) is at http://e-p-i-c.sourceforge.net/
I do hope that Perl 6 makes it much easy to do automated refactoring of
Perl code, supporting most of the techniques described at
http://www.refactoring.com/catalog/