File tree Expand file tree Collapse file tree
src/libraries/TedToolkit.RoslynHelper/Names Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,7 +16,8 @@ private protected BaseName(T symbol)
1616 Symbol = symbol ;
1717 _lazyFullName = new Lazy < string > ( ( ) => symbol . ToDisplayString ( SymbolDisplayFormat . FullyQualifiedFormat ) ) ;
1818 _lazyFullNameNull = new Lazy < string > ( ( ) => symbol . ToDisplayString ( SymbolDisplayFormat . FullyQualifiedFormat
19- . WithMiscellaneousOptions ( SymbolDisplayMiscellaneousOptions . IncludeNullableReferenceTypeModifier ) ) ) ;
19+ . WithMiscellaneousOptions ( SymbolDisplayMiscellaneousOptions . IncludeNullableReferenceTypeModifier |
20+ SymbolDisplayMiscellaneousOptions . ExpandNullable ) ) ) ;
2021 _lazyFullNameNoGlobal = new Lazy < string > ( ( ) => symbol . ToDisplayString ( SymbolDisplayFormat . FullyQualifiedFormat
2122 . WithGlobalNamespaceStyle ( SymbolDisplayGlobalNamespaceStyle . Omitted ) ) ) ;
2223 _lazyMiniName = new Lazy < string > ( ( ) => symbol . ToDisplayString ( SymbolDisplayFormat . MinimallyQualifiedFormat ) ) ;
You can’t perform that action at this time.
0 commit comments