blob: be7adebbc6b78149ddf9d3175a797f9a27ff2042 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#include "antlr/TreeParserSharedInputState.h"
ANTLR_BEGIN_NAMESPACE(antlr)
/** This object contains the data associated with an
* input AST. Multiple parsers
* share a single TreeParserSharedInputState to parse
* the same tree or to have the parser walk multiple
* trees.
*/
TreeParserInputState::TreeParserInputState()
: guessing(0)
{
}
TreeParserInputState::~TreeParserInputState()
{
}
ANTLR_END_NAMESPACE
|