コード例 #1
0
ファイル: jsparser.cs プロジェクト: nuxleus/ajaxmin
 private bool TokenInList(JSToken[] tokens, RecoveryTokenException exc)
 {
     return (-1 != IndexOfToken(tokens, exc._token));
 }
コード例 #2
0
ファイル: jsparser.cs プロジェクト: nuxleus/ajaxmin
 //---------------------------------------------------------------------------------------
 // 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);
 }