IsUnimportant() public method

public IsUnimportant ( ) : bool
return bool
Beispiel #1
0
        public Token Prev()
        {
            Token tok = this.RealPrev(); while (tok != null && tok.IsUnimportant())

            {
                tok = tok.RealPrev();
            }
            return(tok);
        }