7 references to Empty
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.UnitTests (3)
Collections\RopeTests.cs (3)
37
Rope r = Rope.
Empty
;
49
Assert.Same(rope, Rope.Concat(rope, Rope.
Empty
));
50
Assert.Same(rope, Rope.Concat(Rope.
Empty
, rope));
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)