File tree Expand file tree Collapse file tree 2 files changed +7
-0
lines changed
src/SourceGeneration.Reflection Expand file tree Collapse file tree 2 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,10 @@ public class SourceFieldInfo(Func<FieldInfo> fieldInfoAccess) : SourceMemberInfo
20
20
public bool IsStatic { get ; init ; }
21
21
public bool IsReadOnly { get ; init ; }
22
22
public bool IsConst { get ; init ; }
23
+
24
+ public bool IsGenericDictionaryType { get ; init ; }
25
+ public bool IsGenericEnumerableType { get ; init ; }
26
+
23
27
public SourceNullableAnnotation NullableAnnotation { get ; init ; }
24
28
25
29
public Func < object ? , object ? > GetValue
Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ public class SourcePropertyInfo(Func<PropertyInfo> propertyInfoAccess) : SourceM
27
27
public bool IsStatic { get ; init ; }
28
28
public bool IsInitOnly { get ; init ; }
29
29
public bool IsIndexer { get ; init ; }
30
+ public bool IsGenericDictionaryType { get ; init ; }
31
+ public bool IsGenericEnumerableType { get ; init ; }
32
+
30
33
public SourceParameterInfo [ ] IndexerParameters { get ; init ; } = [ ] ;
31
34
32
35
public SourceNullableAnnotation NullableAnnotation { get ; init ; }
You can’t perform that action at this time.
0 commit comments