2 overrides of RopeValue
Microsoft.CodeAnalysis (2)
ConstantValueSpecialized.cs (2)
96internal override Rope? RopeValue 192internal override Rope RopeValue
6 references to RopeValue
Microsoft.CodeAnalysis (2)
ConstantValueSpecialized.cs (1)
207return base.Equals(other) && _value.Equals(other.RopeValue);
SwitchConstantValueHelper.cs (1)
152return constant.RopeValue!.GetHashCode();
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder_Operators.cs (2)
2180Rope leftValue = valueLeft.RopeValue ?? Rope.Empty; 2181Rope rightValue = valueRight.RopeValue ?? Rope.Empty;
Microsoft.CodeAnalysis.VisualBasic (2)
Semantics\Operators.vb (2)
1517Dim leftValue As Rope = If(left.IsNothing, Rope.Empty, left.RopeValue) 1518Dim rightValue As Rope = If(right.IsNothing, Rope.Empty, right.RopeValue)