14 references to OperatorKind
Microsoft.CodeAnalysis.VisualBasic (14)
BoundTree\BoundUserDefinedUnaryOperator.vb (2)
28
Debug.Assert((
OperatorKind
And UnaryOperatorKind.UserDefined) <> 0)
38
If (
OperatorKind
And UnaryOperatorKind.Lifted) <> 0 Then
Generated\BoundNodes.xml.Generated.vb (3)
1477
If operatorKind <> Me.
OperatorKind
OrElse underlyingExpression IsNot Me.UnderlyingExpression OrElse type IsNot Me.Type Then
12204
Return node.Update(node.
OperatorKind
, underlyingExpression, type)
13349
New TreeDumperNode("operatorKind", node.
OperatorKind
, Nothing),
Lowering\Diagnostics\DiagnosticsPass_ExpressionLambdas.vb (2)
34
Dim opKind As UnaryOperatorKind = node.
OperatorKind
And UnaryOperatorKind.OpMask
35
Dim isLifted As Boolean = (node.
OperatorKind
And UnaryOperatorKind.Lifted) <> 0
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter_UnaryOperator.vb (5)
127
Dim opKind As UnaryOperatorKind = userDefinedOperator.
OperatorKind
138
Dim lambdaBody As BoundExpression = BuildLambdaBodyForCoalesce(userDefinedOperator.
OperatorKind
, [call], node.Type, paramSymbol)
176
Dim opKind As UnaryOperatorKind = node.
OperatorKind
And UnaryOperatorKind.OpMask
177
Dim isLifted As Boolean = (node.
OperatorKind
And UnaryOperatorKind.Lifted) <> 0
202
Dim opKind As UnaryOperatorKind = node.
OperatorKind
Lowering\LocalRewriter\LocalRewriter_UnaryOperators.vb (2)
69
Return node.Update(node.
OperatorKind
, VisitExpression(node.UnderlyingExpression), node.Type)
72
If (node.
OperatorKind
And UnaryOperatorKind.Lifted) <> 0 Then