mirror of https://github.com/lua/lua.git
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.
20 lines
310 B
20 lines
310 B
25 years ago
|
/*
|
||
|
** $Id: $
|
||
|
** Code generator for Lua
|
||
|
** See Copyright Notice in lua.h
|
||
|
*/
|
||
|
|
||
|
#ifndef lcode_h
|
||
|
#define lcode_h
|
||
|
|
||
|
#include "llex.h"
|
||
|
#include "lobject.h"
|
||
|
|
||
|
|
||
|
int luaK_primitivecode (LexState *ls, Instruction i);
|
||
|
int luaK_code (LexState *ls, Instruction i);
|
||
|
void luaK_fixjump (LexState *ls, int pc, int dest);
|
||
|
|
||
|
|
||
|
#endif
|