static protected boolean prevCharIsLF = false;
static protected java.io.Reader inputStream;
+ static protected StringBuffer currentBuffer = new StringBuffer();
static protected char[] buffer;
static protected int maxNextCharInd = 0;
else {
maxNextCharInd += i;
}
+ currentBuffer.append(buffer);
return;
}
catch(java.io.IOException e) {
" either use ReInit() or set the JavaCC option STATIC to false\n" +
" during the generation of this class.");
inputStream = dstream;
+ currentBuffer = new StringBuffer();
line = startline;
column = startcolumn - 1;
int startcolumn, int buffersize)
{
inputStream = dstream;
+ currentBuffer = new StringBuffer();
line = startline;
column = startcolumn - 1;