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.
tdevelop/lib/antlr/src/NoViableAltForCharException...

40 lines
999 B

/* ANTLR Translator Generator
* Project led by Terence Parr at http://www.jGuru.com
* Software rights: http://www.antlr.org/license.html
*
* $Id$
*/
#include "antlr/NoViableAltForCharException.h"
#include "antlr/String.h"
#ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
namespace antlr {
#endif
NoViableAltForCharException::NoViableAltForCharException(int c, CharScanner* scanner)
: RecognitionException("NoViableAlt",
scanner->getFilename(),
scanner->getLine(),scanner->getColumn()),
foundChar(c)
{
}
NoViableAltForCharException::NoViableAltForCharException(
int c,
const ANTLR_USE_NAMESPACE(std)string& fileName_,
int line_, int column_)
: RecognitionException("NoViableAlt",fileName_,line_,column_),
foundChar(c)
{
}
ANTLR_USE_NAMESPACE(std)string NoViableAltForCharException::getMessage() const
{
return ANTLR_USE_NAMESPACE(std)string("unexpected char: ")+charName(foundChar);
}
#ifdef ANTLR_CXX_SUPPORTS_NAMESPACE
}
#endif