AIMA.Core.Logic.Propositional.Parsing.PELexer.identifierDetected C# (CSharp) 메소드

identifierDetected() 개인적인 메소드

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