zed_extension_api: Format dap.wit (#30701)

This PR formats the `dap.wit` file.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-05-14 17:05:29 +02:00 committed by GitHub
parent 234d6ce5f5
commit c80aaca0c5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,6 @@
interface dap { interface dap {
use common.{env-vars}; use common.{env-vars};
record launch-request { record launch-request {
program: string, program: string,
cwd: option<string>, cwd: option<string>,
@ -27,6 +28,7 @@ interface dap {
host: option<u32>, host: option<u32>,
timeout: option<u64>, timeout: option<u64>,
} }
record debug-task-definition { record debug-task-definition {
label: string, label: string,
adapter: string, adapter: string,
@ -40,11 +42,12 @@ interface dap {
launch, launch,
attach, attach,
} }
record start-debugging-request-arguments { record start-debugging-request-arguments {
configuration: string, configuration: string,
request: start-debugging-request-arguments-request, request: start-debugging-request-arguments-request,
} }
record debug-adapter-binary { record debug-adapter-binary {
command: string, command: string,
arguments: list<string>, arguments: list<string>,