Beispiel #1
0
 private bool TokenInList(JSToken[] tokens, RecoveryTokenException exc){
     return (-1 != IndexOfToken(tokens, exc._token));
 }
Beispiel #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);
 }