1 implementation of Operand
Microsoft.CodeAnalysis (1)
76 references to Operand
ConfigurationSchemaGenerator (1)
ILLink.RoslynAnalyzer (1)
Microsoft.Analyzers.Local (3)
Microsoft.AspNetCore.App.Analyzers (4)
Microsoft.AspNetCore.Http.RequestDelegateGenerator (1)
Microsoft.AspNetCore.Mvc.Api.Analyzers (3)
Microsoft.CodeAnalysis (11)
Operations\ControlFlowGraphBuilder.cs (11)
1619if (operation.WhenTrue is IConversionOperation whenTrueConversion && whenTrueConversion.Operand.Kind == OperationKind.Throw)
1621IOperation? rewrittenThrow = BaseVisitRequired(whenTrueConversion.Operand, null);
1631else if (operation.WhenFalse is IConversionOperation whenFalseConversion && whenFalseConversion.Operand.Kind == OperationKind.Throw)
1639IOperation rewrittenThrow = BaseVisitRequired(whenFalseConversion.Operand, null);
2925if (conversion.Operand.Kind == OperationKind.Throw)
2927IOperation? rewrittenThrow = BaseVisitRequired(conversion.Operand, null);
3045bool alternativeThrows = conversion?.Operand.Kind == OperationKind.Throw;
3069IOperation? rewrittenThrow = BaseVisitRequired(conversion.Operand, null);
7056Debug.Assert(interpolation.FormatString is ILiteralOperation or IConversionOperation { Operand: ILiteralOperation });
7069Debug.Assert(interpolatedStringText.Text is ILiteralOperation or IConversionOperation { Operand: ILiteralOperation });
7424return new ConversionOperation(VisitRequired(operation.Operand), ((ConversionOperation)operation).ConversionConvertible, operation.IsTryCast, operation.IsChecked, semanticModel: null, operation.Syntax, operation.Type, operation.GetConstantValue(), IsImplicit(operation));
Microsoft.CodeAnalysis.CodeStyle (7)
Microsoft.CodeAnalysis.CodeStyle.Fixes (4)
Microsoft.CodeAnalysis.CSharp.CodeStyle (4)
Microsoft.CodeAnalysis.CSharp.CodeStyle.Fixes (1)
Microsoft.CodeAnalysis.CSharp.Features (3)
Microsoft.CodeAnalysis.CSharp.IOperation.UnitTests (1)
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (1)
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
Microsoft.CodeAnalysis.Features (8)
Microsoft.CodeAnalysis.Test.Utilities (9)
Microsoft.CodeAnalysis.Workspaces (5)
Microsoft.Interop.ComInterfaceGenerator (6)