5 references to BoundIsOperator
Microsoft.CodeAnalysis.CSharp (5)
Binder\Binder_Operators.cs (3)
4698
return new
BoundIsOperator
(node, operand, typeExpression, ConversionKind.NoConversion, resultType, hasErrors: true);
4735
return new
BoundIsOperator
(node, operand, typeExpression, conv.Kind, resultType);
4758
return new
BoundIsOperator
(node, operand, typeExpression, conversion.Kind, resultType);
Generated\BoundNodes.xml.Generated.cs (1)
2874
var result = new
BoundIsOperator
(this.Syntax, operand, targetType, conversionKind, type, this.HasErrors);
Lowering\SyntheticBoundNodeFactory.cs (1)
658
return new
BoundIsOperator
(this.Syntax, operand, Type(type), c.Kind, SpecialType(Microsoft.CodeAnalysis.SpecialType.System_Boolean)) { WasCompilerGenerated = true };