run method

String run()

Runs the scanner and returns the input with markers stripped.

Implementation

String run() {
  while (true) {
    final state = _scanMain();
    if (state == null) break;
  }
  return input;
}