AIMA.Core.Logic.FOL.Parsing.FOLLexer.identifierDetected C# (CSharp) Méthode

identifierDetected() private méthode

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