Adding a debugger for a new language to an IDE or editor is not only a significant effort,
but it is also frustrating that this effort can not be easily amortized over multiple development tools,
as each tool uses different APIs for implementing the same feature.
The idea behind the Debug Adapter Protocol (DAP) is to abstract the way how the debugging support of development tools
communicates with debuggers or runtimes into a protocol. Since it is unrealistic to assume that existing debuggers or runtimes adopt this protocol any time soon,
we rather assume that an intermediary component - a so called Debug Adapter - adapts an existing debugger or runtime to the Debug Adapter Protocol.
The Debug Adapter Protocol makes it possible to implement a generic debugger for a development tool that can communicate with different debuggers via Debug Adapters.
And Debug Adapters can be re-used across multiple development tools which significantly reduces the effort to support a new debugger in different tools.
The Debug Adapter Protocol is a win for both debugger providers and tooling vendors!