removeLastChild method

void removeLastChild()
inherited

Used by enterOuterAlt to toss out a RuleContext previously added as we entered a rule. If we have # label, we will need to remove generic ruleContext object.

Implementation

void removeLastChild() {
  if (children != null) {
    children!.removeLast();
  }
}