You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
940 B
38 lines
940 B
package com.fr.third.antlr; |
|
|
|
/* ANTLR Translator Generator |
|
* Project led by Terence Parr at http://www.cs.usfca.edu |
|
* Software rights: http://www.antlr.org/license.html |
|
* |
|
* $Id: //depot/code/org.antlr/release/antlr-2.7.7/antlr/ParserSharedInputState.java#2 $ |
|
*/ |
|
|
|
/** This object contains the data associated with an |
|
* input stream of tokens. Multiple parsers |
|
* share a single ParserSharedInputState to parse |
|
* the same stream of tokens. |
|
*/ |
|
public class ParserSharedInputState { |
|
/** Where to get token objects */ |
|
protected TokenBuffer input; |
|
|
|
/** Are we guessing (guessing>0)? */ |
|
public int guessing = 0; |
|
|
|
/** What file (if known) caused the problem? */ |
|
protected String filename; |
|
|
|
public void reset() { |
|
guessing = 0; |
|
filename = null; |
|
input.reset(); |
|
} |
|
|
|
public String getFilename() { |
|
return filename; |
|
} |
|
|
|
public TokenBuffer getInput() { |
|
return input; |
|
} |
|
}
|
|
|