7 references to Empty
Microsoft.CodeAnalysis.CSharp (2)
Binder\Binder_Operators.cs (2)
2180Rope leftValue = valueLeft.RopeValue ?? Rope.Empty; 2181Rope rightValue = valueRight.RopeValue ?? Rope.Empty;
Microsoft.CodeAnalysis.UnitTests (3)
Collections\RopeTests.cs (3)
37Rope r = Rope.Empty; 49Assert.Same(rope, Rope.Concat(rope, Rope.Empty)); 50Assert.Same(rope, Rope.Concat(Rope.Empty, rope));
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)