Documentation ¶
Index ¶
Constants ¶
View Source
const ( LUA_SIGNATURE = "\x1bLua" LUAC_VERSION = 0x53 LUAC_FORMAT = 0 LUAC_DATA = "\x19\x93\r\n\x1a\n" CINT_SIZE = 4 CSIZET_SIZE = 8 INSTRUCTION_SIZE = 4 LUA_INTEGER_SIZE = 8 LUA_NUMBER_SIZE = 8 LUAC_INT = 0x5678 LUAC_NUM = 370.5 )
View Source
const ( TAG_NIL = 0x00 TAG_BOOLEAN = 0x01 TAG_NUMBER = 0x03 TAG_INTEGER = 0x13 TAG_SHORT_STR = 0x04 TAG_LONG_STR = 0x14 )
Variables ¶
This section is empty.
Functions ¶
func IsBinaryChunk ¶
Types ¶
type Prototype ¶
type Prototype struct { Source string // debug LineDefined uint32 LastLineDefined uint32 NumParams byte IsVararg byte MaxStackSize byte Code []uint32 Constants []interface{} Upvalues []Upvalue Protos []*Prototype LineInfo []uint32 // debug LocVars []LocVar // debug UpvalueNames []string // debug }
function prototype
Click to show internal directories.
Click to hide internal directories.