/// Vacuum all input from a
///
/// /
///
/// and then treat it
/// like a
/// char[]
/// buffer. Can also pass in a
///
/// or
/// char[]
/// to use.
/// If you need encoding, pass in stream/reader with correct encoding.
///
public class AntlrInputStream : ICharStream
{
public const int ReadBufferSize = 1024;
public const int InitialBufferSize = 1024;
///