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