mirror of
https://github.com/github/codeql.git
synced 2026-02-26 03:43:41 +01:00
11 lines
116 B
Plaintext
11 lines
116 B
Plaintext
/**
|
|
* @name Test for methods
|
|
*/
|
|
import csharp
|
|
|
|
from Method s
|
|
where s.hasName("Swap")
|
|
and s.isStatic()
|
|
select s
|
|
|