16 references to OperatorKind
Microsoft.CodeAnalysis.VisualBasic (16)
BoundTree\BoundUserDefinedUnaryOperator.vb (2)
28Debug.Assert((OperatorKind And UnaryOperatorKind.UserDefined) <> 0) 38If (OperatorKind And UnaryOperatorKind.Lifted) <> 0 Then
Generated\BoundNodes.xml.Generated.vb (3)
1458If operatorKind <> Me.OperatorKind OrElse underlyingExpression IsNot Me.UnderlyingExpression OrElse type IsNot Me.Type Then 12170Return node.Update(node.OperatorKind, underlyingExpression, type) 13312New TreeDumperNode("operatorKind", node.OperatorKind, Nothing),
Lowering\Diagnostics\DiagnosticsPass_ExpressionLambdas.vb (2)
34Dim opKind As UnaryOperatorKind = node.OperatorKind And UnaryOperatorKind.OpMask 35Dim isLifted As Boolean = (node.OperatorKind And UnaryOperatorKind.Lifted) <> 0
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter_UnaryOperator.vb (5)
114Dim opKind As UnaryOperatorKind = userDefinedOperator.OperatorKind 125Dim lambdaBody As BoundExpression = BuildLambdaBodyForCoalesce(userDefinedOperator.OperatorKind, [call], node.Type, paramSymbol) 163Dim opKind As UnaryOperatorKind = node.OperatorKind And UnaryOperatorKind.OpMask 164Dim isLifted As Boolean = (node.OperatorKind And UnaryOperatorKind.Lifted) <> 0 189Dim opKind As UnaryOperatorKind = node.OperatorKind
Lowering\LocalRewriter\LocalRewriter_UnaryOperators.vb (2)
69Return node.Update(node.OperatorKind, VisitExpression(node.UnderlyingExpression), node.Type) 72If (node.OperatorKind And UnaryOperatorKind.Lifted) <> 0 Then
Operations\VisualBasicOperationFactory.vb (2)
513Dim operatorKind As UnaryOperatorKind = Helper.DeriveUnaryOperatorKind(boundUserDefinedUnaryOperator.OperatorKind) 518Dim isLifted As Boolean = (boundUserDefinedUnaryOperator.OperatorKind And VisualBasic.UnaryOperatorKind.Lifted) <> 0