10 instantiations of BoundConvertedTupleLiteral
Microsoft.CodeAnalysis.CSharp (10)
Binder\Binder_Conversions.cs (1)
960BoundExpression result = new BoundConvertedTupleLiteral(
Binder\Binder_Expressions.cs (2)
334result = new BoundConvertedTupleLiteral( 952return 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)
6344var 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)
83tuple = new BoundConvertedTupleLiteral( 125return new BoundConvertedTupleLiteral( 161return new BoundConvertedTupleLiteral( 454return new BoundConvertedTupleLiteral(
20 references to BoundConvertedTupleLiteral
Microsoft.CodeAnalysis.CSharp (20)
Compilation\CSharpSemanticModel.cs (3)
2093case BoundConvertedTupleLiteral { SourceTuple: BoundTupleLiteral original }: 2129var convertedTuple = (BoundConvertedTupleLiteral)tupleLiteralConversion.Operand;
FlowAnalysis\AbstractFlowPass.cs (1)
1069public override BoundNode VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node)
FlowAnalysis\NullableWalker.cs (1)
7555public override BoundNode? VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node)
FlowAnalysis\NullableWalker.DebugVerifier.cs (1)
220public override BoundNode? VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node)
Generated\BoundNodes.xml.Generated.cs (10)
6340public BoundConvertedTupleLiteral Update(BoundTupleLiteral? sourceTuple, bool wasTargetTyped, ImmutableArray<BoundExpression> arguments, ImmutableArray<string?> argumentNamesOpt, ImmutableArray<bool> inferredNamesOpt, TypeSymbol? type) 6344var result = new BoundConvertedTupleLiteral(this.Syntax, sourceTuple, wasTargetTyped, arguments, argumentNamesOpt, inferredNamesOpt, type, this.HasErrors); 8845return VisitConvertedTupleLiteral((BoundConvertedTupleLiteral)node, arg); 9135public virtual R VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node, A arg) => this.DefaultVisit(node, arg); 9363public virtual BoundNode? VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node) => this.DefaultVisit(node); 10135public override BoundNode? VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node) 11382public override BoundNode? VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node) 13573public override BoundNode? VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node) 13577BoundConvertedTupleLiteral updatedNode; 15909public override TreeDumperNode VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node, object? arg) => new TreeDumperNode("convertedTupleLiteral", null, new TreeDumperNode[]
Lowering\DiagnosticsPass_ExpressionTrees.cs (1)
925public override BoundNode VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node)
Lowering\LocalRewriter\LocalRewriter_TupleCreationExpression.cs (1)
20public override BoundNode VisitConvertedTupleLiteral(BoundConvertedTupleLiteral node)
Operations\CSharpOperationFactory.cs (2)
2134BoundConvertedTupleLiteral { SourceTuple: { Type: var t } } => t, 2135BoundConvertedTupleLiteral => null,