ConsumeCurrent() public method

Consumes the current token and increments the parsed token count
public ConsumeCurrent ( ) : void
return void
Beispiel #1
0
 private void Skip()
 {
     if (currentToken != null)
     {
         currentToken = null;
         scanner.ConsumeCurrent();
     }
 }