6 references to BoundSwitchLabel
Microsoft.CodeAnalysis.CSharp (6)
Binder\SwitchBinder_Patterns.cs (5)
134
newLabel = new
BoundSwitchLabel
(label.Syntax, label.Label, label.Pattern, label.HasUnionMatching, label.WhenClause, hasErrors: true);
256
return new
BoundSwitchLabel
(node, label, pattern, hasUnionMatching, null, pattern.HasErrors);
267
return new
BoundSwitchLabel
(node, label, pattern, hasUnionMatching: false, null, hasErrors);
273
return defaultLabel = new
BoundSwitchLabel
(node, label, pattern, hasUnionMatching: false, null, hasErrors);
289
return new
BoundSwitchLabel
(node, label, pattern, hasUnionMatching,
Generated\BoundNodes.xml.Generated.cs (1)
5803
var result = new
BoundSwitchLabel
(this.Syntax, label, pattern, hasUnionMatching, whenClause, this.HasErrors);