File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,8 @@ public override IEnumerable<IExtractionProduct> Contents
92
92
yield return Tuples . cil_parameter_out ( pe ) ;
93
93
if ( p . Attributes . HasFlag ( ParameterAttributes . In ) )
94
94
yield return Tuples . cil_parameter_in ( pe ) ;
95
- Attribute . Populate ( Context , pe , p . GetCustomAttributes ( ) ) ;
95
+ foreach ( var c in Attribute . Populate ( Context , pe , p . GetCustomAttributes ( ) ) )
96
+ yield return c ;
96
97
}
97
98
98
99
yield return Tuples . metadata_handle ( this , Context . Assembly , MetadataTokens . GetToken ( handle ) ) ;
@@ -205,7 +206,8 @@ public override IEnumerable<IExtractionProduct> Contents
205
206
yield return Tuples . cil_newslot ( this ) ;
206
207
207
208
// Populate attributes
208
- Attribute . Populate ( Context , this , md . GetCustomAttributes ( ) ) ;
209
+ foreach ( var c in Attribute . Populate ( Context , this , md . GetCustomAttributes ( ) ) )
210
+ yield return c ;
209
211
}
210
212
}
211
213
You can’t perform that action at this time.
0 commit comments