| 192 | using Array_len = Atomic<Opcode::Array_len>; |
| 193 | struct Array_fill : public Base { |
| 194 | Array_fill() : Base(Opcode::Array_fill), typeidx(0) {} |
| 195 | Array_fill(index_t typeidx) : Base(Opcode::Array_fill), typeidx(typeidx) {} |
| 196 | index_t typeidx; |
| 197 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected