14 references to OperatorKind
Microsoft.CodeAnalysis.VisualBasic (14)
BoundTree\BoundUserDefinedUnaryOperator.vb (2)
28Debug.Assert((OperatorKind And UnaryOperatorKind.UserDefined) <> 0) 38If (OperatorKind And UnaryOperatorKind.Lifted) <> 0 Then
Generated\BoundNodes.xml.Generated.vb (3)
1477If operatorKind <> Me.OperatorKind OrElse underlyingExpression IsNot Me.UnderlyingExpression OrElse type IsNot Me.Type Then 12204Return node.Update(node.OperatorKind, underlyingExpression, type) 13349New 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)
127Dim opKind As UnaryOperatorKind = userDefinedOperator.OperatorKind 138Dim lambdaBody As BoundExpression = BuildLambdaBodyForCoalesce(userDefinedOperator.OperatorKind, [call], node.Type, paramSymbol) 176Dim opKind As UnaryOperatorKind = node.OperatorKind And UnaryOperatorKind.OpMask 177Dim isLifted As Boolean = (node.OperatorKind And UnaryOperatorKind.Lifted) <> 0 202Dim 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