2 overrides of RopeValue
Microsoft.CodeAnalysis (2)
ConstantValueSpecialized.cs (2)
96
internal override Rope?
RopeValue
192
internal override Rope
RopeValue
7 references to RopeValue
Microsoft.CodeAnalysis (2)
ConstantValueSpecialized.cs (1)
207
return base.Equals(other) && _value.Equals(other.
RopeValue
);
SwitchConstantValueHelper.cs (1)
152
return constant.
RopeValue
!.GetHashCode();
Microsoft.CodeAnalysis.CSharp (5)
Binder\Binder_Operators.cs (2)
3059
Rope leftValue = valueLeft.
RopeValue
?? Rope.Empty;
3060
Rope rightValue = valueRight.
RopeValue
?? Rope.Empty;
Lowering\LocalRewriter\LocalRewriter_StringConcat.cs (3)
307
else if (argument is BoundNullCoalescingOperator { LeftOperand: { Type.SpecialType: SpecialType.System_String } left, RightOperand: BoundLiteral { ConstantValueOpt: { IsString: true,
RopeValue
.IsEmpty: true } } })
314
case { IsNull: true } or { IsString: true,
RopeValue
.IsEmpty: true }:
340
return constantValue.
RopeValue
!;