📄 llkparser.hpp
字号:
#ifndef INC_LLkParser_hpp__
#define INC_LLkParser_hpp__
/* ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com
* Software rights: http://www.antlr.org/RIGHTS.html
*
* $Id: //depot/code/org.antlr/main/main/lib/cpp/antlr/LLkParser.hpp#8 $
*/
/* 1999-2007 Version 3.2 November 2007
*
* Optional version
*
* Modified by David Wigg at London South Bank University for CPP_parser.g
* to provide dynamic tracing
*
* See MyReadMe.txt for further information
*
* This file is best viewed in courier font with tabs set to 4 spaces
*/
#include <antlr/config.hpp>
#include <antlr/Parser.hpp>
#ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
namespace antlr {
#endif
/**An LL(k) parser.
*
* @see antlr.Token
* @see antlr.TokenBuffer
* @see antlr.LL1Parser
*/
class ANTLR_API LLkParser : public Parser {
public:
LLkParser(const ParserSharedInputState& lexer, int k_);
LLkParser(TokenBuffer& tokenBuf, int k_);
LLkParser(TokenStream& lexer, int k_);
/** Consume another token from the input stream. Can only write sequentially!
* If you need 3 tokens ahead, you must consume() 3 times.
* <p>
* Note that it is possible to overwrite tokens that have not been matched.
* For example, calling consume() 3 times when k=2, means that the first token
* consumed will be overwritten with the 3rd.
*/
virtual inline void consume()
{
inputState->getInput().consume();
}
virtual inline int LA(unsigned int i)
{
return inputState->getInput().LA(i);
}
virtual inline RefToken LT(unsigned int i)
{
return inputState->getInput().LT(i);
}
protected:
/// the lookahead this LL(k) parser is using.
int k;
private:
void trace(const char* ee, const char* rname);
// DW 060204 For dynamic tracing
bool antlrTracing;
public:
// DW 060204 For dynamic tracing
virtual void antlrTrace(bool traceFlag);
virtual void traceIn(const char* rname);
virtual void traceOut(const char* rname);
};
#ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
}
#endif
#endif //INC_LLkParser_hpp__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -