15 references to UnderlyingExpression
Microsoft.CodeAnalysis.VisualBasic (15)
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 (6)
21
Return DirectCast(
UnderlyingExpression
, BoundCall)
27
Debug.Assert(TypeSymbol.Equals(Type,
UnderlyingExpression
.Type, TypeCompareKind.ConsiderEverything))
29
Debug.Assert(
UnderlyingExpression
.Kind = BoundKind.BadExpression OrElse
UnderlyingExpression
.Kind = BoundKind.Call)
31
If
UnderlyingExpression
.Kind = BoundKind.Call Then
32
Dim underlyingCall = DirectCast(
UnderlyingExpression
, BoundCall)
Generated\BoundNodes.xml.Generated.vb (4)
1477
If operatorKind <> Me.OperatorKind OrElse underlyingExpression IsNot Me.
UnderlyingExpression
OrElse type IsNot Me.Type Then
11227
Me.Visit(node.
UnderlyingExpression
)
12202
Dim underlyingExpression As BoundExpression = DirectCast(Me.Visit(node.
UnderlyingExpression
), BoundExpression)
13350
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
)