mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
453 B
Plaintext
Generated
15 lines
453 B
Plaintext
Generated
// generated by codegen/codegen.py, do not edit
|
|
import codeql.swift.elements
|
|
import TestUtils
|
|
|
|
from File x, string getName, string isSuccessfullyExtracted
|
|
where
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
getName = x.getName() and
|
|
if x.isSuccessfullyExtracted()
|
|
then isSuccessfullyExtracted = "yes"
|
|
else isSuccessfullyExtracted = "no"
|
|
select x, x.getPrimaryQlClasses(), "getName:", getName, "isSuccessfullyExtracted:",
|
|
isSuccessfullyExtracted
|