use of org.batfish.representation.cisco.RouteMapContinue in project batfish by batfish.
the class CiscoControlPlaneExtractor method exitContinue_rm_stanza.
@Override
public void exitContinue_rm_stanza(Continue_rm_stanzaContext ctx) {
int statementLine = ctx.getStart().getLine();
Integer target = null;
if (ctx.DEC() != null) {
target = toInteger(ctx.DEC());
}
RouteMapContinue continueLine = new RouteMapContinue(target, statementLine);
_currentRouteMapClause.setContinueLine(continueLine);
}
Aggregations