File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
src/Compilers/Core/Portable/Symbols Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 55using System ;
66using System . Collections . Generic ;
77using System . Collections . Immutable ;
8+ using System . ComponentModel ;
89using System . Diagnostics ;
910using System . Diagnostics . CodeAnalysis ;
1011
@@ -80,10 +81,12 @@ public interface ITypeSymbol : INamespaceOrTypeSymbol
8081 /// </summary>
8182 bool IsNativeIntegerType { get ; }
8283
83- [ Obsolete ( $ "This API will be removed in the future. Use { nameof ( INamedTypeSymbol ) } .{ nameof ( INamedTypeSymbol . IsExtension ) } instead.") ]
84+ // 4.14 BACKCOMPAT OVERLOAD -- DO NOT TOUCH
85+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
8486 bool IsExtension { get ; }
8587
86- [ Obsolete ( $ "This API will be removed in the future. Use { nameof ( INamedTypeSymbol ) } .{ nameof ( INamedTypeSymbol . ExtensionParameter ) } instead.") ]
88+ // 4.14 BACKCOMPAT OVERLOAD -- DO NOT TOUCH
89+ [ EditorBrowsable ( EditorBrowsableState . Never ) ]
8790 IParameterSymbol ? ExtensionParameter { get ; }
8891
8992 /// <summary>
You can’t perform that action at this time.
0 commit comments