File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 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
9292 yield return Tuples . cil_parameter_out ( pe ) ;
9393 if ( p . Attributes . HasFlag ( ParameterAttributes . In ) )
9494 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 ;
9697 }
9798
9899 yield return Tuples . metadata_handle ( this , Context . Assembly , MetadataTokens . GetToken ( handle ) ) ;
@@ -205,7 +206,8 @@ public override IEnumerable<IExtractionProduct> Contents
205206 yield return Tuples . cil_newslot ( this ) ;
206207
207208 // Populate attributes
208- Attribute . Populate ( Context , this , md . GetCustomAttributes ( ) ) ;
209+ foreach ( var c in Attribute . Populate ( Context , this , md . GetCustomAttributes ( ) ) )
210+ yield return c ;
209211 }
210212 }
211213
You can’t perform that action at this time.
0 commit comments