9 references to Type
Microsoft.CodeAnalysis.CSharp (9)
Binder\Binder_Patterns.cs (2)
1067TypeSymbol elementType = isError ? CreateErrorType() : outPlaceholders[i].Type; 1422TypeSymbol elementType = isError ? CreateErrorType() : outPlaceholders[i].Type;
FlowAnalysis\NullableWalker.cs (1)
10030placeholderArgs.Add(new BoundExpressionWithNullability(variables[i].Expression.Syntax, variables[i].Expression, NullableAnnotation.Oblivious, conversion.DeconstructionInfo.OutputPlaceholders[i].Type));
Generated\BoundNodes.xml.Generated.cs (4)
558if (!Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(variableSymbol, this.VariableSymbol) || isDiscardExpression != this.IsDiscardExpression || !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything)) 10830TypeSymbol? type = this.VisitType(node.Type); 12291updatedNode = node.Update(variableSymbol, node.IsDiscardExpression, node.Type); 15012new TreeDumperNode("type", node.Type, null),
Lowering\LocalRewriter\LocalRewriter_DeconstructionAssignmentOperator.cs (2)
390var localSymbol = new SynthesizedLocal(_factory.CurrentFunction, TypeWithAnnotations.Create(outputPlaceholder.Type), SynthesizedLocalKind.LoweringTemp); 392var localBound = new BoundLocal(target.Syntax, localSymbol, constantValueOpt: null, type: outputPlaceholder.Type)