skipIfRunning method Null safety

void skipIfRunning()

Implementation

void skipIfRunning() {
  if (isRunning) {
    incrementCurrentLine();
    // This wraps if we're at the end of program memory.  I tested, and
    // the 15C behaves this way.
  }
}