onChildComplete method

void onChildComplete()

Implementation

void onChildComplete() {
  _activeChildDelegate = null;
  // Transition state to allow parsing to continue
  if (_state == MapParserState.readingValue) {
    _state = MapParserState.waitingForCommaOrEnd;
  }
}