AIMA.Core.Logic.Propositional.Parsing.PELexer.identifierDetected C# (CSharp) Method

identifierDetected() private method

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