1 implementation of TypeOperand
Microsoft.CodeAnalysis (1)
Generated\Operations.Generated.cs (1)
5761public ITypeSymbol TypeOperand { get; }
7 references to TypeOperand
Microsoft.CodeAnalysis (1)
Operations\ControlFlowGraphBuilder.cs (1)
6963return new IsTypeOperation(VisitRequired(operation.ValueOperand), operation.TypeOperand, operation.IsNegated, semanticModel: null, operation.Syntax, operation.Type, IsImplicit(operation));
Microsoft.CodeAnalysis.CSharp.CodeStyle (1)
CSharpUseNullCheckOverTypeCheckDiagnosticAnalyzer.cs (1)
107isTypeOperation.ValueOperand.Type.InheritsFromOrEquals(isTypeOperation.TypeOperand))
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
ConvertToRecordHelpers.cs (1)
995testType = typeCondition.TypeOperand;
Microsoft.CodeAnalysis.CSharp.Features (2)
ConvertToRecordHelpers.cs (1)
995testType = typeCondition.TypeOperand;
CSharpUseNullCheckOverTypeCheckDiagnosticAnalyzer.cs (1)
107isTypeOperation.ValueOperand.Type.InheritsFromOrEquals(isTypeOperation.TypeOperand))
Microsoft.CodeAnalysis.Test.Utilities (2)
Compilation\OperationTreeVerifier.cs (1)
1320LogType(operation.TypeOperand, "IsType");
Compilation\TestOperationVisitor.cs (1)
899Assert.NotNull(operation.TypeOperand);