mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
12 lines
118 B
Plaintext
12 lines
118 B
Plaintext
/**
|
|
* @name Test for methods
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Method s
|
|
where
|
|
s.hasName("Swap") and
|
|
s.isStatic()
|
|
select s
|