mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
12 lines
294 B
Plaintext
Generated
12 lines
294 B
Plaintext
Generated
// generated by codegen, do not edit
|
|
import codeql.rust.elements
|
|
import TestUtils
|
|
|
|
from Comment x, AstNode getParent, string getText
|
|
where
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
getParent = x.getParent() and
|
|
getText = x.getText()
|
|
select x, "getParent:", getParent, "getText:", getText
|