mirror of
https://github.com/github/codeql.git
synced 2026-03-05 23:26:51 +01:00
10 lines
251 B
Plaintext
10 lines
251 B
Plaintext
import go
|
|
import semmle.go.DiagnosticsReporting
|
|
|
|
from GoFile f
|
|
select f
|
|
|
|
query predicate calls(CallExpr ce, FuncDecl f) { f = ce.getTarget().getFuncDecl() }
|
|
|
|
query predicate extractionErrors(string msg, int sev) { reportableDiagnostics(_, msg, sev) }
|