-
-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Eagerly load lazy variables when expanding children
As described in #1062 Some debug adapters heavily use the lazy hint. For example, a collapsed list is initially displayed as: settings: ArrayList@50 size=1 That's good. But after expanding, the contained items looke like this: settings: ArrayList@50 size=1 0: Assignment@66 Each individual item had to be expanded to show the value: settings: ArrayList@50 size=1 0: Assignment@66 "Assignment{column='stats.jobs_log_size', expressions=[1024]}" This removes the intermediate step, to go from: settings: ArrayList@50 size=1 Straight to: settings: ArrayList@50 size=1 0: Assignment@66 "Assignment{column='stats.jobs_log_size', expressions=[1024]}"
- Loading branch information
1 parent
3eb26a6
commit 79dbc70
Showing
2 changed files
with
39 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters