restoreLastErrorPos method

void restoreLastErrorPos(
  1. int pos
)

Implementation

@pragma('vm:prefer-inline')
void restoreLastErrorPos(int pos) {
  if (lastErrorPos < pos) {
    lastErrorPos = pos;
  }
}