views:

18

answers:

1

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 { ... }
}
A: 

I 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.

pwes
ANTLR, how appropriate! :)
Ether