Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unhide fields from debugger #1117

Merged
merged 1 commit into from
Nov 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/Microsoft.VisualStudio.Threading/JoinableTask.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,11 @@ public partial class JoinableTask : IJoinableTaskDependent
/// <summary>
/// The <see cref="JoinableTaskDependencyGraph.JoinableTaskDependentData"/> to track dependencies between tasks.
/// </summary>
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
AArnott marked this conversation as resolved.
Show resolved Hide resolved
private JoinableTaskDependencyGraph.JoinableTaskDependentData dependentData;

/// <summary>
/// The collections that this job is a member of.
/// </summary>
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private RarelyRemoveItemSet<IJoinableTaskDependent> dependencyParents;

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ public class JoinableTaskCollection : IJoinableTaskDependent, IEnumerable<Joinab
/// <summary>
/// The <see cref="JoinableTaskDependencyGraph.JoinableTaskDependentData"/> to track dependencies between tasks.
/// </summary>
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private JoinableTaskDependencyGraph.JoinableTaskDependentData dependentData;

/// <summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,6 @@ internal struct JoinableTaskDependentData
/// <remarks>
/// When the value in an entry is decremented to 0, the entry is removed from the map.
/// </remarks>
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
private Dictionary<IJoinableTaskDependent, int> childDependentNodes;

/// <summary>
Expand Down