(slots traits.Lister, expr interpreter.InterpretableV2)
| 296 | } |
| 297 | |
| 298 | func newConstantBlock(slots traits.Lister, expr interpreter.InterpretableV2) interpreter.InterpretableV2 { |
| 299 | count := slots.Size().(types.Int) |
| 300 | return &constantBlock{slots: slots, slotCount: int(count), expr: expr} |
| 301 | } |
| 302 | |
| 303 | type constantBlock struct { |
| 304 | slots traits.Lister |