ConsumeCurrent() 공개 메소드

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