Ancestry.QueryProcessor.Parse.LexerToken.DebugCheckType C# (CSharp) Method

DebugCheckType() public method

public DebugCheckType ( TokenType token ) : void
token TokenType
return void
        public void DebugCheckType(TokenType token)
        {
            // WARNING: don't use the conditional attribute; that will omit the whole line in which this method is called, not just the call.  This results in skipped calls to NextToken(), causing lions and lambs to lie down together...
            #if (!DEBUG)
            CheckType(token);
            #endif
        }