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