16 references to OperatorKind
Microsoft.CodeAnalysis.VisualBasic (16)
BoundTree\BoundCaseClause.vb (1)
21Debug.Assert((binaryOp.OperatorKind And BinaryOperatorKind.OpMask) = operatorKind)
BoundTree\BoundUserDefinedBinaryOperator.vb (4)
34Debug.Assert((OperatorKind And BinaryOperatorKind.UserDefined) <> 0) 36Debug.Assert((OperatorKind And BinaryOperatorKind.OpMask) <> BinaryOperatorKind.AndAlso) 37Debug.Assert((OperatorKind And BinaryOperatorKind.OpMask) <> BinaryOperatorKind.OrElse) 43If (OperatorKind And BinaryOperatorKind.Lifted) <> 0 Then
Generated\BoundNodes.xml.Generated.vb (3)
1646If operatorKind <> Me.OperatorKind OrElse underlyingExpression IsNot Me.UnderlyingExpression OrElse checked <> Me.Checked OrElse type IsNot Me.Type Then 12223Return node.Update(node.OperatorKind, underlyingExpression, node.Checked, type) 13375New TreeDumperNode("operatorKind", node.OperatorKind, Nothing),
Lowering\Diagnostics\DiagnosticsPass_ExpressionLambdas.vb (2)
88Dim opKind As BinaryOperatorKind = node.OperatorKind And BinaryOperatorKind.OpMask 96If (node.OperatorKind And BinaryOperatorKind.Lifted) <> 0 Then
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter_BinaryOperator.vb (4)
54Dim opKind As BinaryOperatorKind = node.OperatorKind And BinaryOperatorKind.OpMask 55Dim isLifted As Boolean = (node.OperatorKind And BinaryOperatorKind.Lifted) <> 0 168Dim opKind As BinaryOperatorKind = operand.OperatorKind And BinaryOperatorKind.OpMask 185Dim opKind As BinaryOperatorKind = node.OperatorKind
Lowering\LocalRewriter\LocalRewriter_BinaryOperators.vb (2)
15Return node.Update(node.OperatorKind, DirectCast(Visit(node.UnderlyingExpression), BoundExpression), node.Checked, node.Type) 18If (node.OperatorKind And BinaryOperatorKind.Lifted) <> 0 Then