Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ params ITypeSymbol[] typeArguments
ctx.Types.Get(genericType).Construct(typeArguments).WithNullableAnnotation(NullableAnnotation.NotAnnotated);
}

private static CollectionInfo BuildCollectionInfo(
public static CollectionInfo BuildCollectionInfo(
WellKnownTypes wellKnownTypes,
SymbolAccessor symbolAccessor,
ITypeSymbol type,
Expand All @@ -190,7 +190,7 @@ ITypeSymbol enumeratedType
);
}

private static ITypeSymbol? GetEnumeratedType(WellKnownTypes types, ITypeSymbol type)
public static ITypeSymbol? GetEnumeratedType(WellKnownTypes types, ITypeSymbol type)
{
// if type is array return element type
// otherwise using the IEnumerable element type can erase the null annotation for external types
Expand Down
Loading
Loading