mirror of
https://github.com/github/codeql.git
synced 2026-02-18 07:53:43 +01:00
9 lines
277 B
Plaintext
9 lines
277 B
Plaintext
import java
|
|
|
|
from MethodCall call, Method m
|
|
where
|
|
call.getMethod() = m and
|
|
m.getName() = "<obinit>"
|
|
select call.getEnclosingStmt(), call.getEnclosingStmt().getIndex(), call.getMethod().getName(),
|
|
"Instance initializer call at index " + call.getEnclosingStmt().getIndex()
|