| 128 | |
| 129 | struct Code : public Section { |
| 130 | Code(std::vector<WasmFunc>& funcs) : Section((byte_t)0x0a), funcs(funcs){} |
| 131 | protected: |
| 132 | Stream& read(Stream& stream) override; |
| 133 | std::vector<WasmFunc>& funcs; |
nothing calls this directly
no outgoing calls
no test coverage detected