Skip to content

Commit

Permalink
fix: process nested types
Browse files Browse the repository at this point in the history
  • Loading branch information
Clazex committed Mar 8, 2023
1 parent 2b16f13 commit 87f9945
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions HKReflect.Fody/TypeProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,7 @@ private void ProcessType(TypeDefinition typeDef) {
typeDef.Fields.ForEach(ProcessField);

typeDef.Methods.ParallelForEach(method => ProcessMethod(method, typeDef));

typeDef.NestedTypes.ParallelForEach(ProcessType);
}
}

0 comments on commit 87f9945

Please sign in to comment.