11 references to UnderlyingExpression
Microsoft.CodeAnalysis.VisualBasic (11)
Analysis\FlowAnalysis\AbstractFlowPass.vb (1)
1396
VisitRvalue(node.
UnderlyingExpression
)
BoundTree\BoundConversion.vb (2)
68
Debug.Assert(udc.
UnderlyingExpression
.Type.IsSameTypeIgnoringAll(Type))
85
Dim expr As BoundExpression = DirectCast(Operand, BoundUserDefinedConversion).
UnderlyingExpression
BoundTree\BoundUserDefinedConversion.vb (3)
36
Return DirectCast(
UnderlyingExpression
, BoundConversion)
46
Return DirectCast(DirectCast(
UnderlyingExpression
, BoundConversion).Operand, BoundCall)
49
Return DirectCast(
UnderlyingExpression
, BoundCall)
Generated\BoundNodes.xml.Generated.vb (4)
2304
If underlyingExpression IsNot Me.
UnderlyingExpression
OrElse inOutConversionFlags <> Me.InOutConversionFlags OrElse type IsNot Me.Type Then
11309
Me.Visit(node.
UnderlyingExpression
)
12298
Dim underlyingExpression As BoundExpression = DirectCast(Me.Visit(node.
UnderlyingExpression
), BoundExpression)
13475
New TreeDumperNode("underlyingExpression", Nothing, new TreeDumperNode() {Visit(node.
UnderlyingExpression
, Nothing)}),
Lowering\LocalRewriter\LocalRewriter_Conversion.vb (1)
48
Return Visit(DirectCast(node.Operand, BoundUserDefinedConversion).
UnderlyingExpression
)