mirror of
https://github.com/github/codeql.git
synced 2026-03-05 07:06:47 +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
|
|
|