File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ internal sealed class DefinitionField : Field
8181 private readonly Handle handle ;
8282 private readonly FieldDefinition fd ;
8383
84- public DefinitionField ( GenericContext gc , FieldDefinitionHandle handle ) : base ( gc . Cx )
84+ public DefinitionField ( Context cx , FieldDefinitionHandle handle ) : base ( cx )
8585 {
8686 this . handle = handle ;
8787 fd = Cx . MdReader . GetFieldDefinition ( handle ) ;
Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ private IExtractedEntity CreateGenericHandle(GenericContext gc, Handle handle)
114114 entity = new MethodSpecificationMethod ( gc , ( MethodSpecificationHandle ) handle ) ;
115115 break ;
116116 case HandleKind . FieldDefinition :
117- entity = new DefinitionField ( gc , ( FieldDefinitionHandle ) handle ) ;
117+ entity = new DefinitionField ( gc . Cx , ( FieldDefinitionHandle ) handle ) ;
118118 break ;
119119 case HandleKind . TypeReference :
120120 var tr = new TypeReferenceType ( this , ( TypeReferenceHandle ) handle ) ;
You can’t perform that action at this time.
0 commit comments