Skip to content

Tags: hongcha98/go-dap

Tags

v0.6.8

Toggle v0.6.8's commit message
new request

v0.6.7

Toggle v0.6.7's commit message
Merge remote-tracking branch 'origin/main'

v0.6.6

Toggle v0.6.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update utils.go

v0.6.5

Toggle v0.6.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update utils.go

v0.6.4

Toggle v0.6.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Create utils.go

v0.6.3

Toggle v0.6.3's commit message
readContentLengthHeader

v0.6.2

Toggle v0.6.2's commit message
mod name

v0.6.1

Toggle v0.6.1's commit message
dap -> 1.55.0

v0.6.0

Toggle v0.6.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
cmd/gentypes: generate request, response, event ctor (google#63)

The mapping from event request and response id to event and response types
can be done in generating. This makes sure that the maps stay up
to date with the spec.

v0.5.0

Toggle v0.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
cmd/gentypes: sync at DAP @ 1.47 (google#56)

* cmd/gentypes: sync at DAP @ 1.47

https://github.com/microsoft/vscode-debugadapter-node/tree/049665a465bf74e5f78d648469acbef95f4b16fd

According to the spec, RestartArguments uses a union type (oneOf) and Go does not have a union type.
Both LaunchRequestArguments and AttachRequestArguments are represented as map[string]interface{},
so we may attempt to map this to map[string]interface{}. But if the spec starts to include other
types in the union, this will be a problem. For now, use interface{}.

Added -u and -o flags, and use them with the go generate tool.

* gentypes: adjust the usage error message