| 159 | } |
| 160 | |
| 161 | type fixedCallFrameStack struct { |
| 162 | array []callFrame |
| 163 | sp int |
| 164 | } |
| 165 | |
| 166 | func newFixedCallFrameStack(size int) callFrameStack { |
| 167 | return &fixedCallFrameStack{ |
nothing calls this directly
no outgoing calls
no test coverage detected