| 66 | std::unique_ptr<dap::Session> Client = dap::Session::create(); |
| 67 | std::unique_ptr<dap::Session> Debugger = dap::Session::create(); |
| 68 | void bind() |
| 69 | { |
| 70 | auto client2server = dap::pipe(); |
| 71 | auto server2client = dap::pipe(); |
| 72 | Client->bind(server2client, client2server); |
| 73 | Debugger->bind(client2server, server2client); |
| 74 | } |
| 75 | std::vector<cmListFileFunction> CreateListFileFunctions(char const* str, |
| 76 | char const* filename) |
| 77 | { |
no test coverage detected