Esempio n. 1
0
 /// <summary>
 /// Match the current token to the token supplied.
 /// </summary>
 /// <param name="token1">The first token to expect</param>
 /// <param name="token2">The second token to expect</param>
 /// <param name="token3">The third token to expect</param>
 protected void ExpectMany(Token token1, Token token2 = null, Token token3 = null)
 {
     _tokenIt.ExpectMany(token1, token2, token3);
 }