1 write to IsEmpty
Microsoft.DotNet.AsmDiff (1)
AssemblySet.cs (1)
46
IsEmpty
= includedAssembliesSorted.Length == 0 && dependencies.Length == 0;
6 references to IsEmpty
Microsoft.DotNet.AsmDiff (6)
DiffConfiguration.cs (2)
36
var hasLeft = Left != null && !Left.
IsEmpty
;
37
var hasRight = Right != null && !Right.
IsEmpty
;
DiffConfigurationExtensions.cs (1)
57
var newName = existingSet.
IsEmpty
? null : existingSet.Name;
DiffDocument.cs (2)
29
var hasLeft = Left != null && !Left.
IsEmpty
;
30
var hasRight = Right != null && !Right.
IsEmpty
;
MarkdownDiffExporter.cs (1)
57
string singleSideName = _diffDocument.Left.
IsEmpty
? _diffDocument.Right.Name : _diffDocument.Left.Name;