Moves the current position to the next character that is not whitespace.
()
| 369 | /// Moves the current position to the next character that is not whitespace. |
| 370 | /// </summary> |
| 371 | private void SkipWhitespace() |
| 372 | { |
| 373 | while (!EOF && char.IsWhiteSpace(Peek())) |
| 374 | Move(); |
| 375 | } |
| 376 | |
| 377 | /// <summary> |
| 378 | /// Normalizes the current position. This is primarily for handling conditions where IndexOf(), etc. return negative values when the item being sought was not found. |
nothing calls this directly
no test coverage detected