()
| 287 | } |
| 288 | |
| 289 | func (sa *dynamicSlotActivation) reset() { |
| 290 | sa.Activation = nil |
| 291 | sa.frame = nil |
| 292 | for _, sv := range sa.slotVals { |
| 293 | sv.visited = false |
| 294 | sv.value = nil |
| 295 | } |
| 296 | } |
| 297 | |
| 298 | func newConstantBlock(slots traits.Lister, expr interpreter.InterpretableV2) interpreter.InterpretableV2 { |
| 299 | count := slots.Size().(types.Int) |