Next Program Repair Shop 214

Unbalanced if-else Blocks

        if (some operation succeeds) {
          do the next operation;
        } else {
          display an error message
        }
        unless (some operation successds) {
          display an error message
          next OR last OR return OR die
        }
        do the next operation


Next Copyright © 2002 M. J. Dominus