17 references to UnderlyingExpression
Microsoft.CodeAnalysis.VisualBasic (17)
Analysis\FlowAnalysis\AbstractFlowPass.vb (1)
2228
VisitRvalue(node.
UnderlyingExpression
)
Binding\Binder_Operators.vb (1)
790
bitwise.
UnderlyingExpression
.SetWasCompilerGenerated()
Binding\Binder_Statements.vb (1)
3317
result.
UnderlyingExpression
.MakeCompilerGenerated()
BoundTree\BoundAssignmentOperator.vb (2)
121
If boundUserDefinedOperator.
UnderlyingExpression
.Kind = BoundKind.Call Then
124
leftNode = DirectCast(boundUserDefinedOperator.
UnderlyingExpression
, BoundBadExpression).ChildBoundNodes(0)
BoundTree\BoundUserDefinedBinaryOperator.vb (6)
27
Return DirectCast(
UnderlyingExpression
, BoundCall)
33
Debug.Assert(Type.Equals(
UnderlyingExpression
.Type))
35
Debug.Assert(
UnderlyingExpression
.Kind = BoundKind.BadExpression OrElse
UnderlyingExpression
.Kind = BoundKind.Call)
39
If
UnderlyingExpression
.Kind = BoundKind.Call Then
40
Dim underlyingCall = DirectCast(
UnderlyingExpression
, BoundCall)
Generated\BoundNodes.xml.Generated.vb (4)
1646
If operatorKind <> Me.OperatorKind OrElse underlyingExpression IsNot Me.
UnderlyingExpression
OrElse checked <> Me.Checked OrElse type IsNot Me.Type Then
11243
Me.Visit(node.
UnderlyingExpression
)
12221
Dim underlyingExpression As BoundExpression = DirectCast(Me.Visit(node.
UnderlyingExpression
), BoundExpression)
13376
New TreeDumperNode("underlyingExpression", Nothing, new TreeDumperNode() {Visit(node.
UnderlyingExpression
, Nothing)}),
Lowering\LocalRewriter\LocalRewriter_BinaryOperators.vb (2)
15
Return node.Update(node.OperatorKind, DirectCast(Visit(node.
UnderlyingExpression
), BoundExpression), node.Checked, node.Type)
22
Return Visit(node.
UnderlyingExpression
)