mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
218 B
Plaintext
15 lines
218 B
Plaintext
/**
|
|
* @id java/examples/nativemethod
|
|
* @name Native methods
|
|
* @description Finds methods that are native
|
|
* @tags method
|
|
* native
|
|
* modifier
|
|
*/
|
|
|
|
import java
|
|
|
|
from Method m
|
|
where m.isNative()
|
|
select m
|