MCPcopy Index your code
hub / github.com/tinygo-org/tinygo / localValue

Struct localValue

interp/memory.go:1143–1145  ·  view source on GitHub ↗

localValue is a special implementation of the value interface. It is a placeholder for other values in instruction operands, and is replaced with one of the others before executing.

Source from the content-addressed store, hash-verified

1141// placeholder for other values in instruction operands, and is replaced with
1142// one of the others before executing.
1143type localValue struct {
1144 value llvm.Value
1145}
1146
1147func (v localValue) len(r *runner) uint32 {
1148 panic("interp: localValue.len")

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected