10 instantiations of BoundConvertedTupleLiteral
Microsoft.CodeAnalysis.CSharp (10)
Binder\Binder_Conversions.cs (1)
3125BoundExpression result = new BoundConvertedTupleLiteral(
Binder\Binder_Expressions.cs (2)
374result = new BoundConvertedTupleLiteral( 1027return new BoundConvertedTupleLiteral(syntax, sourceTuple: null, wasTargetTyped: true, subExpressions, tupleNames, inferredPositions, tupleType);
Binder\Binder_TupleOperators.cs (1)
64return new BoundConvertedTupleLiteral(
Generated\BoundNodes.xml.Generated.cs (1)
6747var result = new BoundConvertedTupleLiteral(this.Syntax, sourceTuple, wasTargetTyped, arguments, argumentNamesOpt, inferredNamesOpt, type, this.HasErrors);
Lowering\LocalRewriter\LocalRewriter_DeconstructionAssignmentOperator.cs (1)
268return new BoundConvertedTupleLiteral(
Lowering\LocalRewriter\LocalRewriter_TupleBinaryOperator.cs (4)
84tuple = new BoundConvertedTupleLiteral( 128return new BoundConvertedTupleLiteral( 164return new BoundConvertedTupleLiteral( 459return new BoundConvertedTupleLiteral(
25 references to BoundConvertedTupleLiteral
Microsoft.CodeAnalysis.CSharp (25)
BoundTree\BoundConversion.cs (5)
26Debug.Assert(Operand is BoundConvertedTupleLiteral); 32Debug.Assert(Operand is BoundConvertedTupleLiteral || 74Operand is BoundConvertedTupleLiteral)); 112Operand is BoundConvertedTupleLiteral)); 174Operand is BoundConvertedTupleLiteral));
Compilation\CSharpSemanticModel.cs (3)
2083case BoundConvertedTupleLiteral { SourceTuple: BoundTupleLiteral original }: 2119var convertedTuple = (BoundConvertedTupleLiteral)tupleLiteralConversion.Operand;
FlowAnalysis\AbstractFlowPass.cs (1)
1173public override BoundNode VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node)
FlowAnalysis\NullableWalker.cs (1)
9332public override BoundNode? VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node)
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
350public override BoundNode? VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node)
Generated\BoundNodes.xml.Generated.cs (10)
6743public BoundConvertedTupleLiteral Update(BoundTupleLiteral? sourceTuple, bool wasTargetTyped, ImmutableArray<BoundExpression> arguments, ImmutableArray<string?> argumentNamesOpt, ImmutableArray<bool> inferredNamesOpt, TypeSymbol? type) 6747var result = new BoundConvertedTupleLiteral(this.Syntax, sourceTuple, wasTargetTyped, arguments, argumentNamesOpt, inferredNamesOpt, type, this.HasErrors); 9448return VisitConvertedTupleLiteral((BoundConvertedTupleLiteral)node, arg); 9754public virtual R VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node, A arg) => this.DefaultVisit(node, arg); 9995public virtual BoundNode? VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node) => this.DefaultVisit(node); 10807public override BoundNode? VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node) 12254public override BoundNode? VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node) 14587public override BoundNode? VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node) 14591BoundConvertedTupleLiteral updatedNode; 17055public override TreeDumperNode VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node, object? arg) => new TreeDumperNode("convertedTupleLiteral", null, new TreeDumperNode[]
Lowering\DiagnosticsPass_ExpressionTrees.cs (1)
1066public override BoundNode VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node)
Lowering\LocalRewriter\LocalRewriter_TupleCreationExpression.cs (1)
20public override BoundNode VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node)
Operations\CSharpOperationFactory.cs (2)
2311BoundConvertedTupleLiteral { SourceTuple: { Type: var t } } => t, 2312BoundConvertedTupleLiteral => null,