예제 #1
0
 private FixAllProviderInfo(
     IFixAllProvider fixAllProvider,
     ImmutableArray <FixAllScope> supportedScopes)
 {
     FixAllProvider  = fixAllProvider;
     SupportedScopes = supportedScopes;
 }
예제 #2
0
 public SuppressionFixerFixAllProviderInfo(
     IFixAllProvider fixAllProvider,
     IConfigurationFixProvider suppressionFixer,
     ImmutableArray <FixAllScope> supportedScopes)
     : base(fixAllProvider, supportedScopes)
 {
     _canBeSuppressedOrUnsuppressed = suppressionFixer.IsFixableDiagnostic;
 }
예제 #3
0
 public CodeFixerFixAllProviderInfo(
     IFixAllProvider fixAllProvider,
     IEnumerable <string> supportedDiagnosticIds,
     ImmutableArray <FixAllScope> supportedScopes)
     : base(fixAllProvider, supportedScopes)
 {
     _supportedDiagnosticIds = supportedDiagnosticIds;
 }
예제 #4
0
 public CodeRefactoringFixAllProviderInfo(
     IFixAllProvider fixAllProvider,
     ImmutableArray <FixAllScope> supportedScopes)
     : base(fixAllProvider, supportedScopes)
 {
 }