2 instantiations of BoundConvertedTupleLiteral
Microsoft.CodeAnalysis.VisualBasic (2)
Binding\Binder_Conversions.vb (1)
1660Dim result As BoundExpression = New BoundConvertedTupleLiteral(
Generated\BoundNodes.xml.Generated.vb (1)
3462Dim result = New BoundConvertedTupleLiteral(Me.Syntax, naturalTypeOpt, arguments, type, Me.HasErrors)
12 references to BoundConvertedTupleLiteral
Microsoft.CodeAnalysis.VisualBasic (12)
Analysis\FlowAnalysis\AbstractFlowPass.vb (1)
2321Public Overrides Function VisitConvertedTupleLiteral(node As BoundConvertedTupleLiteral) As BoundNode
Compilation\SemanticModel.vb (1)
942type = DirectCast(lowestExpr, BoundConvertedTupleLiteral).NaturalTypeOpt
Generated\BoundNodes.xml.Generated.vb (7)
3460Public Function Update(naturalTypeOpt As TypeSymbol, arguments As ImmutableArray(Of BoundExpression), type As TypeSymbol) As BoundConvertedTupleLiteral 9435Return VisitConvertedTupleLiteral(CType(node, BoundConvertedTupleLiteral), arg) 9917Public Overridable Function VisitConvertedTupleLiteral(node As BoundConvertedTupleLiteral, arg As A) As R 10620Public Overridable Function VisitConvertedTupleLiteral(node As BoundConvertedTupleLiteral) As BoundNode 11391Public Overrides Function VisitConvertedTupleLiteral(node As BoundConvertedTupleLiteral) As BoundNode 12397Public Overrides Function VisitConvertedTupleLiteral(node As BoundConvertedTupleLiteral) As BoundNode 13628Public Overrides Function VisitConvertedTupleLiteral(node As BoundConvertedTupleLiteral, arg As Object) As TreeDumperNode
Lowering\LocalRewriter\LocalRewriter_TupleLiteralExpression.vb (1)
15Public Overrides Function VisitConvertedTupleLiteral(node As BoundConvertedTupleLiteral) As BoundNode
Operations\VisualBasicOperationFactory.vb (2)
226Return CreateBoundConvertedTupleLiteralOperation(DirectCast(boundNode, BoundConvertedTupleLiteral)) 1546Private Function CreateBoundConvertedTupleLiteralOperation(boundConvertedTupleLiteral As BoundConvertedTupleLiteral) As ITupleOperation