* jump over several characters. * * @param i the number of characters to jump over. */
| 1910 | * @param i the number of characters to jump over. |
| 1911 | */ |
| 1912 | void ASFormatter::goForward(int i) |
| 1913 | { |
| 1914 | while (--i >= 0) |
| 1915 | getNextChar(); |
| 1916 | } |
| 1917 | |
| 1918 | /** |
| 1919 | * peek at the next unread character. |
nothing calls this directly
no outgoing calls
no test coverage detected