mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
13 lines
187 B
Plaintext
13 lines
187 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
|