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

IsSymbol() public method

Return true if the token's type is Symbol it matches the given symbol.
public IsSymbol ( string symbol ) : bool
symbol string
return bool
        public bool IsSymbol(string symbol)
        {
            return Type == TokenType.Symbol && Token == symbol;
        }