You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
The DAP types should be transparently represented as single rust types.
Currently, we have unnecessary redundancy with some types, such as Request::Continue, where we have arguments: ContinueArguments, when the variant Request::Continue should hold the arguments directly instead of declaring an intermediate type
Is your feature request related to a problem? Please describe.
The DAP types should be transparently represented as single rust types.
Currently, we have unnecessary redundancy with some types, such as
Request::Continue
, where we havearguments: ContinueArguments
, when the variantRequest::Continue
should hold the arguments directly instead of declaring an intermediate typedap-reactor/src/request.rs
Lines 32 to 34 in adc93e6
Describe the solution you'd like
Simplify the types and remove the redundancy
The text was updated successfully, but these errors were encountered: