mirror of
https://github.com/github/codeql.git
synced 2026-04-18 05:24:01 +02: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) }
|