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
// CLR debugger may not be able to access t__builder, when NGEN assemblies are being used, and the type of the field could be lost.
65
73
// Our workaround is to pick up the first Task object referenced by the state machine, which seems to be correct.
66
74
// That function works with the raw data structure (like how GC scans the object, so it doesn't depend on symbols.
75
+
//
76
+
// However, one problem of that is we can pick up tasks from other reference fields of the same structure. So, we go through fields which we have symbols
77
+
// and remember references encounted, and we skip them when we go through GC references.
78
+
// Note: we can do better by going through other value structures, and extract references from them here, which we can consider when we have a real scenario.
0 commit comments