blob: 89f1d5dcd79109141eefe584b7fcdb40fe6e02e7 (
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.hpp"
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
|