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