92c59963f8
git-svn-id: http://mc-server.googlecode.com/svn/trunk@606 0a769ca7-a7f5-676a-18bf-c427514a06d6
48 lines
1020 B
C++
48 lines
1020 B
C++
/* see copyright notice in squirrel.h */
|
|
#ifndef _SQLEXER_H_
|
|
#define _SQLEXER_H_
|
|
|
|
#ifdef SQUNICODE
|
|
typedef SQChar LexChar;
|
|
#else
|
|
typedef unsigned char LexChar;
|
|
#endif
|
|
|
|
struct SQLexer
|
|
{
|
|
SQLexer();
|
|
~SQLexer();
|
|
void Init(SQSharedState *ss,SQLEXREADFUNC rg,SQUserPointer up,CompilerErrorFunc efunc,void *ed);
|
|
void Error(const SQChar *err);
|
|
SQInteger Lex();
|
|
const SQChar *Tok2Str(SQInteger tok);
|
|
private:
|
|
SQInteger GetIDType(SQChar *s);
|
|
SQInteger ReadString(SQInteger ndelim,bool verbatim);
|
|
SQInteger ReadNumber();
|
|
void LexBlockComment();
|
|
void LexLineComment();
|
|
SQInteger ReadID();
|
|
void Next();
|
|
SQInteger _curtoken;
|
|
SQTable *_keywords;
|
|
SQBool _reached_eof;
|
|
public:
|
|
SQInteger _prevtoken;
|
|
SQInteger _currentline;
|
|
SQInteger _lasttokenline;
|
|
SQInteger _currentcolumn;
|
|
const SQChar *_svalue;
|
|
SQInteger _nvalue;
|
|
SQFloat _fvalue;
|
|
SQLEXREADFUNC _readf;
|
|
SQUserPointer _up;
|
|
LexChar _currdata;
|
|
SQSharedState *_sharedstate;
|
|
sqvector<SQChar> _longstr;
|
|
CompilerErrorFunc _errfunc;
|
|
void *_errtarget;
|
|
};
|
|
|
|
#endif
|