How can I get support for jumping to Moose methods using Eclipse with the EPIC plugin? (Using F3)
They’re declared like
class Point {
method getDistance { ... }
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It won’t be easy… The grammar for Perl in EPIC in written using ANTLR, a Java based, parsers’ generator. It is statically compiled into Java code, so if you want to change the default Perl grammar, or add to it, you have to dive into ANTLR grammar and recompile the EPIC plugin.
Parts of the grammar can be found e.g. here.