AIMA.Core.Logic.FOL.Parsing.FOLLexer.identifierDetected C# (CSharp) Method

identifierDetected() private method

private identifierDetected ( ) : bool
return bool
        private bool identifierDetected()
        {
            return (isJavaIdentifierStart(((char)lookAheadBuffer[0]))
                    || partOfConnector());
        }