Ardour  8.7-15-gadf511264b
llex.h File Reference
#include "lobject.h"
#include "lzio.h"
Include dependency graph for llex.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

union  SemInfo
 
struct  Token
 
struct  LexState
 

Macros

#define FIRST_RESERVED   257
 
#define LUA_ENV   "_ENV"
 
#define NUM_RESERVED   (cast(int, TK_WHILE-FIRST_RESERVED+1))
 

Typedefs

typedef struct Token Token
 
typedef struct LexState LexState
 

Enumerations

enum  RESERVED {
  TK_AND = 257 , TK_BREAK , TK_DO , TK_ELSE ,
  TK_ELSEIF , TK_END , TK_FALSE , TK_FOR ,
  TK_FUNCTION , TK_GOTO , TK_IF , TK_IN ,
  TK_LOCAL , TK_NIL , TK_NOT , TK_OR ,
  TK_REPEAT , TK_RETURN , TK_THEN , TK_TRUE ,
  TK_UNTIL , TK_WHILE , TK_IDIV , TK_CONCAT ,
  TK_DOTS , TK_EQ , TK_GE , TK_LE ,
  TK_NE , TK_SHL , TK_SHR , TK_DBCOLON ,
  TK_EOS , TK_FLT , TK_INT , TK_NAME ,
  TK_STRING
}
 

Functions

void luaX_init (lua_State *L)
 
void luaX_setinput (lua_State *L, LexState *ls, ZIO *z, TString *source, int firstchar)
 
TStringluaX_newstring (LexState *ls, const char *str, size_t l)
 
void luaX_next (LexState *ls)
 
int luaX_lookahead (LexState *ls)
 
void luaX_syntaxerror (LexState *ls, const char *s)
 
const char * luaX_token2str (LexState *ls, int token)
 

Macro Definition Documentation

◆ FIRST_RESERVED

#define FIRST_RESERVED   257

Definition at line 14 of file llex.h.

◆ LUA_ENV

#define LUA_ENV   "_ENV"

Definition at line 18 of file llex.h.

◆ NUM_RESERVED

#define NUM_RESERVED   (cast(int, TK_WHILE-FIRST_RESERVED+1))

Definition at line 40 of file llex.h.

Typedef Documentation

◆ LexState

typedef struct LexState LexState

◆ Token

typedef struct Token Token

Enumeration Type Documentation

◆ RESERVED

enum RESERVED
Enumerator
TK_AND 
TK_BREAK 
TK_DO 
TK_ELSE 
TK_ELSEIF 
TK_END 
TK_FALSE 
TK_FOR 
TK_FUNCTION 
TK_GOTO 
TK_IF 
TK_IN 
TK_LOCAL 
TK_NIL 
TK_NOT 
TK_OR 
TK_REPEAT 
TK_RETURN 
TK_THEN 
TK_TRUE 
TK_UNTIL 
TK_WHILE 
TK_IDIV 
TK_CONCAT 
TK_DOTS 
TK_EQ 
TK_GE 
TK_LE 
TK_NE 
TK_SHL 
TK_SHR 
TK_DBCOLON 
TK_EOS 
TK_FLT 
TK_INT 
TK_NAME 
TK_STRING 

Definition at line 26 of file llex.h.

Function Documentation

◆ luaX_init()

void luaX_init ( lua_State L)

◆ luaX_lookahead()

int luaX_lookahead ( LexState ls)

◆ luaX_newstring()

TString* luaX_newstring ( LexState ls,
const char *  str,
size_t  l 
)

◆ luaX_next()

void luaX_next ( LexState ls)

◆ luaX_setinput()

void luaX_setinput ( lua_State L,
LexState ls,
ZIO z,
TString source,
int  firstchar 
)

◆ luaX_syntaxerror()

void luaX_syntaxerror ( LexState ls,
const char *  s 
)

◆ luaX_token2str()

const char* luaX_token2str ( LexState ls,
int  token 
)