()
| 729 | // Returns the rune at the cursor position. |
| 730 | // Precondition: |more()|. |
| 731 | int peek() { |
| 732 | return str.codePointAt(pos); |
| 733 | } |
| 734 | |
| 735 | // Advances the cursor by |n| positions, which must be ASCII runes. |
| 736 | // |
no outgoing calls
no test coverage detected