1 write to Checked
Microsoft.CodeAnalysis.CSharp (1)
Generated\BoundNodes.xml.Generated.cs (1)
1906
this.
Checked
= @checked;
10 references to Checked
Microsoft.CodeAnalysis.CSharp (10)
CodeGen\Optimizer.cs (1)
1583
return node.Update(left, right, node.LeftPlaceholder, node.LeftConversion, node.OperatorResultKind, @checked: node.
Checked
, node.Type);
FlowAnalysis\NullableWalker.cs (3)
5639
GenerateConversionForConditionalOperator(node.LeftOperand, leftType, rightType, reportMismatch: false, isChecked: node.
Checked
) is { Exists: true } conversion)
5645
conversion = GenerateConversionForConditionalOperator(node.RightOperand, rightType, leftType, reportMismatch: true, isChecked: node.
Checked
);
5652
var conversion = GenerateConversionForConditionalOperator(node.LeftOperand, leftType, rightType, reportMismatch: true, isChecked: node.
Checked
);
Generated\BoundNodes.xml.Generated.cs (5)
1922
if (leftOperand != this.LeftOperand || rightOperand != this.RightOperand || leftPlaceholder != this.LeftPlaceholder || leftConversion != this.LeftConversion || operatorResultKind != this.OperatorResultKind || @checked != this.
Checked
|| !TypeSymbol.Equals(type, this.Type, TypeCompareKind.ConsiderEverything))
11070
return node.Update(leftOperand, rightOperand, leftPlaceholder, leftConversion, node.OperatorResultKind, node.
Checked
, type);
12832
updatedNode = node.Update(leftOperand, rightOperand, leftPlaceholder, leftConversion, node.OperatorResultKind, node.
Checked
, infoAndType.Type!);
12837
updatedNode = node.Update(leftOperand, rightOperand, leftPlaceholder, leftConversion, node.OperatorResultKind, node.
Checked
, node.Type);
15372
new TreeDumperNode("@checked", node.
Checked
, null),
Lowering\SpillSequenceSpiller.cs (1)
1260
return UpdateExpression(builder, node.Update(left, right, node.LeftPlaceholder, node.LeftConversion, node.OperatorResultKind, @checked: node.
Checked
, node.Type));