| 203 | }; |
| 204 | struct Array_init_data : public Base { |
| 205 | Array_init_data() : Base(Opcode::Array_init_data), typeidx(0), dataidx(0) {} |
| 206 | Array_init_data(index_t typeidx, index_t dataidx) : Base(Opcode::Array_init_data), typeidx(typeidx), dataidx(dataidx) {} |
| 207 | index_t typeidx; |
| 208 | index_t dataidx; |
nothing calls this directly
no outgoing calls
no test coverage detected