MCPcopy Index your code
hub / github.com/yuin/gopher-lua / newFixedCallFrameStack

Function newFixedCallFrameStack

state.go:166–171  ·  view source on GitHub ↗
(size int)

Source from the content-addressed store, hash-verified

164}
165
166func newFixedCallFrameStack(size int) callFrameStack {
167 return &fixedCallFrameStack{
168 array: make([]callFrame, size),
169 sp: 0,
170 }
171}
172
173func (cs *fixedCallFrameStack) IsEmpty() bool { return cs.sp == 0 }
174

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…