this.lexer.match(TokenTypes.SERVICE_ROUTE);
this.lexer.SPorHT();
this.lexer.match(':');
this.lexer.SPorHT();
while (true) {
ServiceRoute serviceRoute = new ServiceRoute();
super.parse(serviceRoute);
serviceRouteList.add(serviceRoute);
this.lexer.SPorHT();
if (lexer.lookAhead(0) == ',') {
this.lexer.match(',');