@@ -133,9 +133,6 @@ bool IdDependsOnImpl(ITypeSymbol? type)
133
133
134
134
/// <summary>
135
135
/// Constructs a unique string for this type symbol.
136
- ///
137
- /// The supplied action <paramref name="subTermAction"/> is applied to the
138
- /// syntactic sub terms of this type (if any).
139
136
/// </summary>
140
137
/// <param name="cx">The extraction context.</param>
141
138
/// <param name="trapFile">The trap builder used to store the result.</param>
@@ -495,31 +492,31 @@ public static bool IsReallyUnbound(this INamedTypeSymbol type) =>
495
492
496
493
/// <summary>
497
494
/// Holds if this type is of the form <code>int?</code> or
498
- /// <code>System.Nullable< int> </code>.
495
+ /// <code>System.Nullable< int> </code>.
499
496
/// </summary>
500
497
public static bool IsBoundNullable ( this ITypeSymbol type ) =>
501
498
type . SpecialType == SpecialType . None && type . OriginalDefinition . IsUnboundNullable ( ) ;
502
499
503
500
/// <summary>
504
- /// Holds if this type is <code>System.Nullable<T> </code>.
501
+ /// Holds if this type is <code>System.Nullable<T> </code>.
505
502
/// </summary>
506
503
public static bool IsUnboundNullable ( this ITypeSymbol type ) =>
507
504
type . SpecialType == SpecialType . System_Nullable_T ;
508
505
509
506
/// <summary>
510
- /// Holds if this type is <code>System.Span<T> </code>.
507
+ /// Holds if this type is <code>System.Span<T> </code>.
511
508
/// </summary>
512
509
public static bool IsUnboundSpan ( this ITypeSymbol type ) =>
513
510
type . ToString ( ) == "System.Span<T>" ;
514
511
515
512
/// <summary>
516
- /// Holds if this type is of the form <code>System.Span< byte> </code>.
513
+ /// Holds if this type is of the form <code>System.Span< byte> </code>.
517
514
/// </summary>
518
515
public static bool IsBoundSpan ( this ITypeSymbol type ) =>
519
516
type . SpecialType == SpecialType . None && type . OriginalDefinition . IsUnboundSpan ( ) ;
520
517
521
518
/// <summary>
522
- /// Holds if this type is <code>System.ReadOnlySpan<T> </code>.
519
+ /// Holds if this type is <code>System.ReadOnlySpan<T> </code>.
523
520
/// </summary>
524
521
public static bool IsUnboundReadOnlySpan ( this ITypeSymbol type ) =>
525
522
type . ToString ( ) == "System.ReadOnlySpan<T>" ;
@@ -536,7 +533,7 @@ attribute.AttributeClass is INamedTypeSymbol nt &&
536
533
}
537
534
538
535
/// <summary>
539
- /// Holds if this type is of the form <code>System.ReadOnlySpan< byte> </code>.
536
+ /// Holds if this type is of the form <code>System.ReadOnlySpan< byte> </code>.
540
537
/// </summary>
541
538
public static bool IsBoundReadOnlySpan ( this ITypeSymbol type ) =>
542
539
type . SpecialType == SpecialType . None && type . OriginalDefinition . IsUnboundReadOnlySpan ( ) ;
0 commit comments