6 references to Type
Microsoft.CodeAnalysis.CSharp (6)
Compilation\CSharpSemanticModel.cs (1)
2135
convertedType = convertedSwitch.
Type
;
Generated\BoundNodes.xml.Generated.cs (4)
4992
if (!TypeSymbol.Equals(naturalTypeOpt, this.NaturalTypeOpt, TypeCompareKind.ConsiderEverything) || wasTargetTyped != this.WasTargetTyped || expression != this.Expression || switchArms != this.SwitchArms || reachabilityDecisionDag != this.ReachabilityDecisionDag || !Symbols.SymbolEqualityComparer.ConsiderEverything.Equals(defaultLabel, this.DefaultLabel) || reportedNotExhaustive != this.ReportedNotExhaustive || !TypeSymbol.Equals(type, this.
Type
, TypeCompareKind.ConsiderEverything))
11540
TypeSymbol? type = this.VisitType(node.
Type
);
13668
updatedNode = node.Update(naturalTypeOpt, node.WasTargetTyped, expression, switchArms, reachabilityDecisionDag, node.DefaultLabel, node.ReportedNotExhaustive, node.
Type
);
16097
new TreeDumperNode("type", node.
Type
, null),
Lowering\LocalRewriter\LocalRewriter_SwitchExpression.cs (1)
89
LocalSymbol resultTemp = _factory.SynthesizedLocal(node.
Type
, node.Syntax, kind: SynthesizedLocalKind.LoweringTemp);