217218219220221222223224225
* * @param code The code to compile. * @return The root node. */ public ProgramNode compileEPL(final String code) { final ParseEPL parser = new ParseEPL(this); this.rootNode = parser.parse(code); return this.rootNode; }