Exemplo n.º 1
0
 private bool TokenInList(JSToken[] tokens, RecoveryTokenException exc)
 {
     return (-1 != IndexOfToken(tokens, exc._token));
 }
Exemplo n.º 2
0
 //---------------------------------------------------------------------------------------
 // IndexOfToken
 //
 //  check whether the recovery token is a good one for the caller
 //---------------------------------------------------------------------------------------
 private int IndexOfToken(JSToken[] tokens, RecoveryTokenException exc)
 {
     return IndexOfToken(tokens, exc._token);
 }