| 175 | }; |
| 176 | struct Array_new_data : public Base { |
| 177 | Array_new_data() : Base(Opcode::Array_new_data), typeidx(0), dataidx(0) {} |
| 178 | Array_new_data(index_t typeidx, index_t dataidx) : Base(Opcode::Array_new_data), typeidx(typeidx), dataidx(dataidx) {} |
| 179 | index_t typeidx; |
| 180 | index_t dataidx; |
nothing calls this directly
no outgoing calls
no test coverage detected