Home
last modified time | relevance | path

Searched defs:Funcode (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/starlark-go/internal/compile/
H A Dcompile.go326 type Funcode struct { struct
327 Prog *Program
328 Pos syntax.Position // position of def or lambda token
329 Name string // name of this function
330 Doc string // docstring of this function
331 Code []byte // the byte code
332 pclinetab []uint16 // mapping from pc to linenum
333 Locals []Binding // locals, parameters first
334 Cells []int // indices of Locals that require cells
335 Freevars []Binding // for tracing
[all …]
H A Dcodegen_test.go76 func disassemble(f *Funcode) string {