popMode method

int popMode()
inherited

Implementation

int popMode() {
  if (_modeStack.isEmpty) throw StateError('');
  if (LexerATNSimulator.debug) log('popMode back to ${_modeStack.last}');
  mode(_modeStack.removeLast());
  return mode_;
}