9 references to Empty
ILLink.RoslynAnalyzer (9)
DataFlow\FeatureChecksValue.cs (4)
21
public static readonly FeatureChecksValue All = new FeatureChecksValue(ValueSet<string>.Unknown, ValueSet<string>.
Empty
);
23
public static readonly FeatureChecksValue None = new FeatureChecksValue(ValueSet<string>.
Empty
, ValueSet<string>.
Empty
);
28
DisabledFeatures = ValueSet<string>.
Empty
;
DataFlow\FeatureContextLattice.cs (1)
22
public static readonly FeatureContext None = new FeatureContext(ValueSet<string>.
Empty
);
ISymbolExtensions.cs (1)
92
return featureSet.Count == 0 ? ValueSet<string>.
Empty
: new ValueSet<string>(featureSet);
src\tools\illink\src\ILLink.Shared\DataFlow\ValueSet.cs (3)
274
return
Empty
;
283
return right.Contains((TValue)left._values) ? left.DeepCopy() :
Empty
;
286
return left.Contains((TValue)right._values) ? right.DeepCopy() :
Empty
;