Cottle.Parsers.Default.LexemState.Follow C# (CSharp) 메소드

Follow() 공개 메소드

public Follow ( char character ) : LexemState
character char
리턴 LexemState
        public LexemState Follow(char character)
        {
            LexemState	state;

            if (this.branches.TryGetValue (character, out state))
                return state;

            return null;
        }
LexemState