mirror of
https://github.com/hohn/codeql-intro-csharp.git
synced 2025-12-16 10:43:05 +01:00
Run analysis using given script and database
This commit is contained in:
committed by
=Michael Hohn
parent
450b9897a1
commit
2a4a0d5413
12
FindFunction.ql
Normal file
12
FindFunction.ql
Normal file
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* @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"
|
||||
Reference in New Issue
Block a user