Skip to content

Provide a way for variables to be eagerly provided with the output #85

@connor4312

Description

@connor4312

Investigating microsoft/vscode-js-debug#161, the call flow is:

  1. The debug adapter receives a log message
  2. It stores variables and tells the client that output was received, passing a variablesReference
  3. The program terminates
  4. The variables are never resolved / output is not shown because the session ended before the client requests the variables

The was not a problem in the previous JS adapter with the given example script simply because there's short circuit logic in the event that we only log a string--but this obviously isn't something that will work for all scenarios.

The clear way I see to solve this would be to allow the debug adapter to eagerly provide the variable reference in the output; I don't think there's really another good way to solve the race above short of holding the session open for some arbitrary period of time expecting that the client might request variables.

Trace of one scenario where this happened, which you can view using the tool.

This would also help solve microsoft/vscode-js-debug#122.

Metadata

Metadata

Assignees

Labels

feature-requestRequest for new features or functionality

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions