File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
src/SourceGeneration.Reflection Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public class SourceTypeInfo : SourceMemberInfo
53
53
public SourceConstructorInfo [ ] DeclaredConstructors => _declaredConstructors ??= DeclaredConstructorsInitializer ( ) ;
54
54
public SourceFieldInfo [ ] DeclaredFields => _declaredFields ??= DeclaredFieldsInitializer ( ) ;
55
55
56
- public SourceTypeInfo MarkArrayType ( ) => SourceReflector . GetRequiredType ( ArrayType , true ) ;
56
+ public SourceTypeInfo MakeArrayType ( ) => SourceReflector . GetRequiredType ( ArrayType , true ) ;
57
57
58
58
public SourcePropertyInfo [ ] GetProperties ( ) => _properties ??= GetThisAndAncestors ( ) . Reverse ( ) . SelectMany ( x => x . DeclaredProperties ) . ToArray ( ) ;
59
59
public SourceFieldInfo [ ] GetFields ( ) => _fields ??= GetThisAndAncestors ( ) . Reverse ( ) . SelectMany ( x => x . DeclaredFields ) . ToArray ( ) ;
You can’t perform that action at this time.
0 commit comments