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.
tdesdk/poxml/antlr/src/TreeParserSharedInputState.cpp

23 lines
424 B

#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