in reply to Re: Eclipse and Perl
in thread Eclipse and PERL
Eclipse has that nice way of marking the line with a compilation error with a red dot on the side. The error message is "Compilation failed in require
A fatal error (trappable) Perl could not compile a file specified in a C<require> statement. Perl uses this generic message when none of the errors that it encountered were severe enough to halt compilation immediately." This is on the line where I include Expect (use Expect;) Given the dependencies I learned about from the replies here, it is possible that the Expect module is found but some dependencies are missing and therefore the error is inside the module where other modules (that are missing) are being included and Eclipse can only flag the "use Expect;" line for obvious reasons (if this is indeed the case).