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