6 references to FeatureContext
ILLink.RoslynAnalyzer (6)
DataFlow\FeatureContextLattice.cs (5)
20
public static readonly FeatureContext All = new
FeatureContext
(ValueSet<string>.Unknown);
22
public static readonly FeatureContext None = new
FeatureContext
(ValueSet<string>.Empty);
43
return new
FeatureContext
(EnabledFeatures.DeepCopy ());
48
return new
FeatureContext
(ValueSet<string>.Intersection (EnabledFeatures, other.EnabledFeatures));
53
return new
FeatureContext
(ValueSet<string>.Union (EnabledFeatures, other.EnabledFeatures));
TrimAnalysis\TrimAnalysisVisitor.cs (1)
69
currentState.Context = currentState.Context.Union (new
FeatureContext
(featureChecksValue.EnabledFeatures));