3 overrides of IsAnonymousType
Microsoft.CodeAnalysis.VisualBasic (3)
Symbols\AnonymousTypes\PublicSymbols\AnonymousTypeOrDelegatePublicSymbol.vb (1)
189
Public Overrides ReadOnly Property
IsAnonymousType
As Boolean
Symbols\SubstitutedNamedType.vb (1)
977
Public Overrides ReadOnly Property
IsAnonymousType
As Boolean
Symbols\UnboundGenericType.vb (1)
94
Public Overrides ReadOnly Property
IsAnonymousType
As Boolean
64 references to IsAnonymousType
Microsoft.CodeAnalysis.VisualBasic (64)
Binding\Binder_Conversions.vb (1)
995
Debug.Assert(sourceType.IsDelegateType() AndAlso DirectCast(sourceType, NamedTypeSymbol).
IsAnonymousType
AndAlso targetType.IsDelegateType() AndAlso
Binding\Binder_Delegates.vb (1)
1247
receiver.Type.
IsAnonymousType
Then
BoundTree\BoundAnonymousTypeCreationExpression.vb (1)
22
Debug.Assert(type.
IsAnonymousType
)
CodeGen\EmitExpression.vb (3)
2262
Debug.Assert(Not node.Field.ContainingType.
IsAnonymousType
) ' NO anonymous types field access expected
2294
Debug.Assert(Not method.ContainingType.IsGenericType AndAlso Not method.ContainingType.
IsAnonymousType
)
2297
Debug.Assert(method.ContainingType.IsGenericType OrElse method.ContainingType.
IsAnonymousType
)
Emit\EditAndContinue\VisualBasicSymbolMatcher.vb (2)
314
If type.
IsAnonymousType
Then
623
If type.
IsAnonymousType
Then
Emit\NamedTypeSymbolAdapter.vb (40)
42
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
49
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
55
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
62
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
73
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
85
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
92
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
103
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
110
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
120
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
131
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
146
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
161
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
172
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
237
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
257
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
273
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
342
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
377
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
394
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
413
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
425
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
441
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
453
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
516
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
529
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
542
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
555
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
567
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
580
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
593
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
606
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
619
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
631
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
639
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
664
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
703
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
730
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
746
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
755
Debug.Assert(Not AdaptedNamedTypeSymbol.
IsAnonymousType
)
Emit\SymbolTranslator.vb (2)
121
If namedTypeSymbol.
IsAnonymousType
Then
318
If container.
IsAnonymousType
Then
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter.vb (1)
680
If node.Type.
IsAnonymousType
AndAlso node.Arguments.Length <> 0 Then
Lowering\LambdaRewriter\LambdaRewriter.vb (1)
1467
method.ContainingType.
IsAnonymousType
AndAlso
Lowering\LocalRewriter\LocalRewriter_Conversion.vb (1)
316
DirectCast(node.Operand.Type, NamedTypeSymbol).
IsAnonymousType
AndAlso
Lowering\SyntheticBoundNodeFactory.vb (1)
895
Dim isInGenericType As Boolean = DirectCast(method.ContainingType.GetTupleUnderlyingTypeOrSelf(), NamedTypeSymbol).IsGenericType OrElse method.ContainingType.
IsAnonymousType
Semantics\Conversions.vb (2)
1568
If Not invoke.ReturnType.
IsAnonymousType
Then
2951
If source.
IsAnonymousType
AndAlso source.IsDelegateType() AndAlso destination.IsDelegateType() Then
Semantics\TypeInference\TypeArgumentInference.vb (3)
1660
Debug.Assert(argumentInvokeProc IsNot Nothing OrElse Not argumentDelegateType.
IsAnonymousType
)
1663
If argumentDelegateType.
IsAnonymousType
AndAlso Not parameterDelegateType.
IsAnonymousType
AndAlso
Symbols\AnonymousTypes\AnonymousTypeManager_Templates.vb (2)
252
Debug.Assert(type.
IsAnonymousType
)
263
Debug.Assert(type.
IsAnonymousType
)
Symbols\AnonymousTypes\PublicSymbols\AnonymousTypeOrDelegatePublicSymbol.vb (1)
284
Debug.Assert(method.ContainingType.
IsAnonymousType
)
Symbols\SubstitutedNamedType.vb (1)
979
Return ConstructedFrom.
IsAnonymousType
Symbols\UnboundGenericType.vb (1)
96
Return OriginalDefinition.
IsAnonymousType