mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
11 lines
200 B
Plaintext
11 lines
200 B
Plaintext
import cpp
|
|
|
|
string attributeArg(Attribute a) {
|
|
if exists(a.getAnArgument())
|
|
then result = a.getAnArgument().toString()
|
|
else result = "<none>"
|
|
}
|
|
|
|
from Attribute a
|
|
select a, attributeArg(a)
|