15 references to UnderlyingExpression
Microsoft.CodeAnalysis.VisualBasic (15)
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\BoundUserDefinedBinaryOperator.vb (1)
27
Return DirectCast(
UnderlyingExpression
, BoundCall)
Generated\BoundNodes.xml.Generated.vb (4)
1637
If operatorKind <> Me.OperatorKind OrElse underlyingExpression IsNot Me.
UnderlyingExpression
OrElse checked <> Me.Checked OrElse type IsNot Me.Type Then
11234
Me.Visit(node.
UnderlyingExpression
)
12212
Dim underlyingExpression As BoundExpression = DirectCast(Me.Visit(node.
UnderlyingExpression
), BoundExpression)
13367
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
)
Operations\VisualBasicOperationFactory_Methods.vb (5)
141
operatorMethod:=If(boundUserDefinedBinaryOperator.
UnderlyingExpression
.Kind = BoundKind.Call, boundUserDefinedBinaryOperator.Call.Method, Nothing),
151
Dim isImplicit As Boolean = [operator].
UnderlyingExpression
.WasCompilerGenerated
152
Return OperationFactory.CreateInvalidOperation(_semanticModel, [operator].
UnderlyingExpression
.Syntax, ImmutableArray(Of IOperation).Empty, isImplicit)
156
If [operator].
UnderlyingExpression
.Kind = BoundKind.Call Then
166
Return GetChildOfBadExpressionBoundNode([operator].
UnderlyingExpression
, index)