16 references to OperatorKind
Microsoft.CodeAnalysis.VisualBasic (16)
BoundTree\BoundCaseClause.vb (1)
21
Debug.Assert((binaryOp.
OperatorKind
And BinaryOperatorKind.OpMask) = operatorKind)
BoundTree\BoundUserDefinedBinaryOperator.vb (2)
34
Debug.Assert((
OperatorKind
And BinaryOperatorKind.UserDefined) <> 0)
41
If (
OperatorKind
And BinaryOperatorKind.Lifted) <> 0 Then
Generated\BoundNodes.xml.Generated.vb (3)
1627
If operatorKind <> Me.
OperatorKind
OrElse underlyingExpression IsNot Me.UnderlyingExpression OrElse checked <> Me.Checked OrElse type IsNot Me.Type Then
12189
Return node.Update(node.
OperatorKind
, underlyingExpression, node.Checked, type)
13338
New TreeDumperNode("operatorKind", node.
OperatorKind
, Nothing),
Lowering\Diagnostics\DiagnosticsPass_ExpressionLambdas.vb (2)
88
Dim opKind As BinaryOperatorKind = node.
OperatorKind
And BinaryOperatorKind.OpMask
96
If (node.
OperatorKind
And BinaryOperatorKind.Lifted) <> 0 Then
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter_BinaryOperator.vb (4)
64
Dim opKind As BinaryOperatorKind = node.
OperatorKind
And BinaryOperatorKind.OpMask
65
Dim isLifted As Boolean = (node.
OperatorKind
And BinaryOperatorKind.Lifted) <> 0
104
Dim opKind As BinaryOperatorKind = operand.
OperatorKind
And BinaryOperatorKind.OpMask
121
Dim opKind As BinaryOperatorKind = node.
OperatorKind
Lowering\LocalRewriter\LocalRewriter_BinaryOperators.vb (2)
20
Return node.Update(node.
OperatorKind
, DirectCast(Visit(node.UnderlyingExpression), BoundExpression), node.Checked, node.Type)
23
If (node.
OperatorKind
And BinaryOperatorKind.Lifted) <> 0 Then
Operations\VisualBasicOperationFactory_Methods.vb (2)
140
binaryOperatorKind:=Helper.DeriveBinaryOperatorKind(boundUserDefinedBinaryOperator.
OperatorKind
, leftOpt:=Nothing),
142
isLifted:=(boundUserDefinedBinaryOperator.
OperatorKind
And VisualBasic.BinaryOperatorKind.Lifted) <> 0,