proto-socket/dart/.vscode/launch.json
toki 240239682c Initial commit: Dart implementation of toki-socket protocol
- Protobuf-based binary TCP socket library
- ProtobufClient / ProtobufServer abstract classes with heartbeat
- Type-based message routing via Communicator
- 4-byte big-endian length-prefixed framing protocol
- 8 integration tests (all passing)
- PROTOCOL.md wire format specification
- VSCode launch.json for test runner

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-05 13:44:04 +09:00

24 lines
601 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"name": "Run All Tests",
"type": "dart",
"request": "launch",
"program": "test/socket_test.dart"
},
{
"name": "Debug All Tests",
"type": "dart",
"request": "launch",
"program": "test/socket_test.dart",
"args": ["--reporter", "expanded"]
},
{
"name": "Run Test (Current File)",
"type": "dart",
"request": "launch",
"program": "${file}"
}
]
}