3
3
using System . Collections . Generic ;
4
4
using System . Collections . Immutable ;
5
5
using System . Linq ;
6
- using System . Threading ;
7
6
using Analyzer . Utilities ;
8
7
using Analyzer . Utilities . Extensions ;
9
8
using Analyzer . Utilities . PooledObjects ;
@@ -98,15 +97,7 @@ void OnOperationBlockStart(OperationBlockStartAnalysisContext blockStartContext)
98
97
}
99
98
100
99
// Don't run any other check for this method if it isn't a valid analysis context
101
- if ( ! ShouldAnalyze ( methodSymbol , wellKnownTypeProvider , skippedAttributes ,
102
- blockStartContext . Options , isWebProject , blockStartContext . CancellationToken ) )
103
- {
104
- return ;
105
- }
106
-
107
- // Don't report methods which have a single throw statement
108
- // with NotImplementedException or NotSupportedException
109
- if ( blockStartContext . IsMethodNotImplementedOrSupported ( ) )
100
+ if ( ! ShouldAnalyze ( methodSymbol , wellKnownTypeProvider , skippedAttributes , isWebProject , blockStartContext ) )
110
101
{
111
102
return ;
112
103
}
@@ -191,9 +182,10 @@ private static bool ShouldAnalyze(
191
182
IMethodSymbol methodSymbol ,
192
183
WellKnownTypeProvider wellKnownTypeProvider ,
193
184
ImmutableArray < INamedTypeSymbol > skippedAttributes ,
194
- AnalyzerOptions options ,
195
185
bool isWebProject ,
196
- CancellationToken cancellationToken )
186
+ #pragma warning disable RS1012 // Start action has no registered actions
187
+ OperationBlockStartAnalysisContext blockStartContext )
188
+ #pragma warning restore RS1012 // Start action has no registered actions
197
189
{
198
190
// Modifiers that we don't care about
199
191
if ( methodSymbol . IsStatic || methodSymbol . IsOverride || methodSymbol . IsVirtual ||
@@ -208,19 +200,53 @@ private static bool ShouldAnalyze(
208
200
return false ;
209
201
}
210
202
211
- // Do not analyze public APIs for web projects
212
- // See https://github.com/dotnet/roslyn-analyzers/issues/3835 for details.
213
- if ( isWebProject && methodSymbol . IsExternallyVisible ( ) )
203
+ // Don't report methods which have a single throw statement
204
+ // with NotImplementedException or NotSupportedException
205
+ if ( blockStartContext . IsMethodNotImplementedOrSupported ( ) )
214
206
{
215
207
return false ;
216
208
}
217
209
218
- // CA1000 says one shouldn't declare static members on generic types. So don't flag such cases.
219
- if ( methodSymbol . ContainingType . IsGenericType && methodSymbol . IsExternallyVisible ( ) )
210
+ if ( methodSymbol . IsExternallyVisible ( ) )
211
+ {
212
+ // Do not analyze public APIs for web projects
213
+ // See https://github.com/dotnet/roslyn-analyzers/issues/3835 for details.
214
+ if ( isWebProject )
215
+ {
216
+ return false ;
217
+ }
218
+
219
+ // CA1000 says one shouldn't declare static members on generic types. So don't flag such cases.
220
+ if ( methodSymbol . ContainingType . IsGenericType )
221
+ {
222
+ return false ;
223
+ }
224
+ }
225
+
226
+ // We consider that auto-property have the intent to always be instance members so we want to workaround this issue.
227
+ if ( methodSymbol . IsAutoPropertyAccessor ( ) )
220
228
{
221
229
return false ;
222
230
}
223
231
232
+ // Awaitable-awaiter pattern members should not be marked as static.
233
+ // There is no need to check for INotifyCompletion or ICriticalNotifyCompletion members as they are already excluded.
234
+ if ( wellKnownTypeProvider . TryGetOrCreateTypeByMetadataName ( WellKnownTypeNames . SystemRuntimeCompilerServicesINotifyCompletion , out var inotifyCompletionType )
235
+ && wellKnownTypeProvider . TryGetOrCreateTypeByMetadataName ( WellKnownTypeNames . SystemRuntimeCompilerServicesICriticalNotifyCompletion , out var icriticalNotifyCompletionType ) )
236
+ {
237
+ if ( methodSymbol . IsGetAwaiterFromAwaitablePattern ( inotifyCompletionType , icriticalNotifyCompletionType )
238
+ || methodSymbol . IsGetResultFromAwaiterPattern ( inotifyCompletionType , icriticalNotifyCompletionType ) )
239
+ {
240
+ return false ;
241
+ }
242
+
243
+ if ( methodSymbol . AssociatedSymbol is IPropertySymbol property
244
+ && property . IsIsCompletedFromAwaiterPattern ( inotifyCompletionType , icriticalNotifyCompletionType ) )
245
+ {
246
+ return false ;
247
+ }
248
+ }
249
+
224
250
var attributes = methodSymbol . GetAttributes ( ) ;
225
251
if ( methodSymbol . AssociatedSymbol != null )
226
252
{
@@ -248,14 +274,14 @@ private static bool ShouldAnalyze(
248
274
return false ;
249
275
}
250
276
251
- if ( ! options . MatchesConfiguredVisibility ( Rule , methodSymbol , wellKnownTypeProvider . Compilation , cancellationToken ,
252
- defaultRequiredVisibility : SymbolVisibilityGroup . All ) )
277
+ var hasCorrectVisibility = blockStartContext . Options . MatchesConfiguredVisibility ( Rule , methodSymbol , wellKnownTypeProvider . Compilation ,
278
+ blockStartContext . CancellationToken , defaultRequiredVisibility : SymbolVisibilityGroup . All ) ;
279
+ if ( ! hasCorrectVisibility )
253
280
{
254
281
return false ;
255
282
}
256
283
257
- // We consider that auto-property have the intent to always be instance members so we want to workaround this issue.
258
- return ! methodSymbol . IsAutoPropertyAccessor ( ) ;
284
+ return true ;
259
285
}
260
286
261
287
private static bool IsExplicitlyVisibleFromCom ( IMethodSymbol methodSymbol , WellKnownTypeProvider wellKnownTypeProvider )
0 commit comments