(String s)
| 743 | |
| 744 | // Advances the cursor by the number of cursor positions in |s|. |
| 745 | void skipString(String s) { |
| 746 | pos += s.length(); |
| 747 | } |
| 748 | |
| 749 | // Returns the rune at the cursor position, and advances the cursor |
| 750 | // past it. Precondition: |more()|. |
no test coverage detected