Antlr4.Runtime.BufferedTokenStream.Fill C# (CSharp) 메소드

Fill() 공개 메소드

Get all tokens from lexer until EOF.
Get all tokens from lexer until EOF.
public Fill ( ) : void
리턴 void
        public virtual void Fill()
        {
            LazyInit();
            int blockSize = 1000;
            while (true)
            {
                int fetched = Fetch(blockSize);
                if (fetched < blockSize)
                {
                    return;
                }
            }
        }