AjRools.Expert.Compiler.Parser.SkipBlankLines C# (CSharp) Méthode

SkipBlankLines() private méthode

private SkipBlankLines ( ) : void
Résultat void
        private void SkipBlankLines()
        {
            Token token;

            for (token = this.NextToken(); token != null && token.Type == TokenType.EndOfLine; token = this.NextToken())
                ;

            this.PushToken(token);
        }