13 references to UnderlyingExpression
Microsoft.CodeAnalysis.VisualBasic (13)
Analysis\FlowAnalysis\AbstractFlowPass.vb (1)
2297
VisitRvalue(node.
UnderlyingExpression
)
Binding\Binder_Conversions.vb (1)
382
isTrue.
UnderlyingExpression
.SetWasCompilerGenerated()
Binding\Binder_Operators.vb (1)
774
testOp.
UnderlyingExpression
.SetWasCompilerGenerated()
BoundTree\BoundUserDefinedUnaryOperator.vb (1)
21
Return DirectCast(
UnderlyingExpression
, BoundCall)
Generated\BoundNodes.xml.Generated.vb (4)
1468
If operatorKind <> Me.OperatorKind OrElse underlyingExpression IsNot Me.
UnderlyingExpression
OrElse type IsNot Me.Type Then
11218
Me.Visit(node.
UnderlyingExpression
)
12193
Dim underlyingExpression As BoundExpression = DirectCast(Me.Visit(node.
UnderlyingExpression
), BoundExpression)
13341
New TreeDumperNode("underlyingExpression", Nothing, new TreeDumperNode() {Visit(node.
UnderlyingExpression
, Nothing)}),
Lowering\LocalRewriter\LocalRewriter_UnaryOperators.vb (2)
69
Return node.Update(node.OperatorKind, VisitExpression(node.
UnderlyingExpression
), node.Type)
76
Return Visit(node.
UnderlyingExpression
)
Operations\VisualBasicOperationFactory.vb (3)
488
If userDefined.
UnderlyingExpression
.Kind = BoundKind.Call Then
491
Return GetChildOfBadExpression(userDefined.
UnderlyingExpression
, 0)
525
Return If(boundUserDefinedUnaryOperator.
UnderlyingExpression
.Kind = BoundKind.Call, boundUserDefinedUnaryOperator.Call.Method, Nothing)