mirror of
https://github.com/hohn/codeql-intro-csharp.git
synced 2025-12-15 18:23:04 +01:00
13 lines
216 B
Plaintext
13 lines
216 B
Plaintext
/**
|
|
* @name Find Function
|
|
* @description List certain functions in a DB
|
|
* @kind problem
|
|
* @id csharp/intro/FindFunction
|
|
* @problem.severity warning
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Method me
|
|
select me, "Method found"
|