mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
8 lines
186 B
Plaintext
8 lines
186 B
Plaintext
import python
|
|
|
|
from ClassObject cls, string abstract
|
|
where
|
|
not cls.isBuiltin() and
|
|
if cls.isAbstract() then abstract = "yes" else abstract = "no"
|
|
select cls.toString(), abstract
|