示例#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)
 {
 }