MCPcopy Create free account
hub / github.com/despiteallobjections/amigo / build

Method build

types/builder.go:98–103  ·  view source on GitHub ↗
(fn *Function, info *Info, emitBody func(b *builder))

Source from the content-addressed store, hash-verified

96func (b *builder) golden(note string) bool { return false }
97
98func (prog *Program) build(fn *Function, info *Info, emitBody func(b *builder)) {
99 b := &builder{Prog: prog, Fn: fn, info: info}
100 b.startBody()
101 emitBody(b)
102 b.finishBody()
103}
104
105func (b *builder) split(wr func(w *writer), rd func(r *reader)) {
106 var buf anyBuffer

Callers 4

makeWrapperKeyMethod · 0.95
makeBoundMethod · 0.95
buildFunctionMethod · 0.95
buildMethod · 0.45

Calls 2

startBodyMethod · 0.95
finishBodyMethod · 0.95

Tested by

no test coverage detected