[[pure virtual]]
| 295 | |
| 296 | // [[pure virtual]] |
| 297 | Error BaseEmitter::embed_data_array(TypeId type_id, const void* data, size_t item_count, size_t repeat_count) { |
| 298 | Support::maybe_unused(type_id, data, item_count, repeat_count); |
| 299 | return make_error(Error::kInvalidState); |
| 300 | } |
| 301 | |
| 302 | // [[pure virtual]] |
| 303 | Error BaseEmitter::embed_const_pool(const Label& label, const ConstPool& pool) { |
no test coverage detected