mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
14 lines
189 B
Plaintext
14 lines
189 B
Plaintext
/**
|
|
* @name Extern methods
|
|
* @description Finds methods that are 'extern'.
|
|
* @tags method
|
|
* native
|
|
* modifier
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Method m
|
|
where m.isExtern()
|
|
select m
|