MCPcopy Create free account
hub / github.com/DNAProject/DNA / Dump

Method Dump

vm/neovm/value_stack.go:181–189  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

179}
180
181func (self *ValueStack) Dump() string {
182 data := fmt.Sprintf("stack[%d]:\n", len(self.data))
183 for i, item := range self.data {
184 i = len(self.data) - i
185 res := item.Dump()
186 data += fmt.Sprintf("%d:\t%s\n", i, res)
187 }
188 return data
189}

Callers 1

RuntimeLogFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected