Files
codeql/cpp/ql/test/library-tests/comments/binding/commentBinding.ql
2018-08-02 17:53:23 +01:00

9 lines
165 B
Plaintext

import cpp
from Comment c, string s
where if exists(c.getCommentedElement())
then s = c.getCommentedElement().toString()
else s = "<none>"
select c, s