2 overrides of RopeValue
Microsoft.CodeAnalysis (2)
ConstantValueSpecialized.cs (2)
96
internal override Rope?
RopeValue
192
internal override Rope
RopeValue
6 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 (2)
Binder\Binder_Operators.cs (2)
2180
Rope leftValue = valueLeft.
RopeValue
?? Rope.Empty;
2181
Rope rightValue = valueRight.
RopeValue
?? Rope.Empty;
Microsoft.CodeAnalysis.VisualBasic (2)
Semantics\Operators.vb (2)
1517
Dim leftValue As Rope = If(left.IsNothing, Rope.Empty, left.
RopeValue
)
1518
Dim rightValue As Rope = If(right.IsNothing, Rope.Empty, right.
RopeValue
)