| 597 | class Emitter { |
| 598 | public: |
| 599 | Emitter(std::ostream& out, const File& file) : out_(out), file_(file) {} |
| 600 | |
| 601 | void emit(const std::string& inputName, const std::string& outputName) { |
| 602 | out_ << "// " << outputName << " - AUTO-GENERATED by tools/ipc_codegen.\n" |
nothing calls this directly
no outgoing calls
no test coverage detected