Skip to content

Commit

Permalink
Expose MarkStep.ScopeStack (#89120)
Browse files Browse the repository at this point in the history
We need access to this during our mark step.
  • Loading branch information
mrvoorhe authored Jul 19, 2023
1 parent 14036c5 commit 0321755
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tools/illink/src/linker/Linker.Steps/MarkStep.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ MarkStepContext MarkContext {
readonly HashSet<TypeDefinition> _entireTypesMarked;
DynamicallyAccessedMembersTypeHierarchy? _dynamicallyAccessedMembersTypeHierarchy;
MarkScopeStack? _scopeStack;
MarkScopeStack ScopeStack {
protected MarkScopeStack ScopeStack {
get {
Debug.Assert (_scopeStack != null);
return _scopeStack;
Expand Down

0 comments on commit 0321755

Please sign in to comment.