Searched defs:Funcode (Results 1 – 2 of 2) sorted by relevance
326 type Funcode struct { struct327 Prog *Program328 Pos syntax.Position // position of def or lambda token329 Name string // name of this function330 Doc string // docstring of this function331 Code []byte // the byte code332 pclinetab []uint16 // mapping from pc to linenum333 Locals []Binding // locals, parameters first334 Cells []int // indices of Locals that require cells335 Freevars []Binding // for tracing[all …]
76 func disassemble(f *Funcode) string {