I've been looking at implementing loadedSources in lldb-dap but I'd like to be careful about returning to much data in a single request.
At the moment, the loadedSources request does not support pagination.
The modules request supports a simple pagination scheme where the request can include the starting offset and the number of items to include.
I wonder if it would be useful for paginating the loadedSources request to ensure we don't overload the client with data.
I've been looking at implementing
loadedSourcesin lldb-dap but I'd like to be careful about returning to much data in a single request.At the moment, the
loadedSourcesrequest does not support pagination.The
modulesrequest supports a simple pagination scheme where the request can include the starting offset and the number of items to include.I wonder if it would be useful for paginating the
loadedSourcesrequest to ensure we don't overload the client with data.