mirror of
https://github.com/github/codeql.git
synced 2026-04-30 19:26:02 +02:00
Codegen: mark generated checked in files as such
This commit is contained in:
@@ -58,7 +58,9 @@ def _parse_args() -> argparse.Namespace:
|
||||
help="output directory for generated C++ files, required if trap or cpp is provided to "
|
||||
"--generate"),
|
||||
p.add_argument("--generated-registry",
|
||||
help="registry file containing information about checked-in generated code"),
|
||||
help="registry file containing information about checked-in generated code. A .gitattributes"
|
||||
"file is generated besides it to mark those files with linguist-generated=true. Must"
|
||||
"be in a directory containing all generated code."),
|
||||
]
|
||||
p.add_argument("--script-name",
|
||||
help="script name to put in header comments of generated files. By default, the path of this "
|
||||
@@ -108,7 +110,7 @@ def run():
|
||||
log_level = logging.INFO
|
||||
logging.basicConfig(format="{levelname} {message}", style='{', level=log_level)
|
||||
for target in opts.generate:
|
||||
generate(target, opts, render.Renderer(opts.script_name, opts.root_dir))
|
||||
generate(target, opts, render.Renderer(opts.script_name))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
@@ -25,14 +25,10 @@ class Error(Exception):
|
||||
class Renderer:
|
||||
""" Template renderer using mustache templates in the `templates` directory """
|
||||
|
||||
def __init__(self, generator: pathlib.Path, root_dir: pathlib.Path):
|
||||
def __init__(self, generator: pathlib.Path):
|
||||
self._r = pystache.Renderer(search_dirs=str(paths.templates_dir), escape=lambda u: u)
|
||||
self._root_dir = root_dir
|
||||
self._generator = generator
|
||||
|
||||
def _get_path(self, file: pathlib.Path):
|
||||
return file.relative_to(self._root_dir)
|
||||
|
||||
def render(self, data: object, output: pathlib.Path):
|
||||
""" Render `data` to `output`.
|
||||
|
||||
@@ -60,7 +56,7 @@ class Renderer:
|
||||
|
||||
def manage(self, generated: typing.Iterable[pathlib.Path], stubs: typing.Iterable[pathlib.Path],
|
||||
registry: pathlib.Path, force: bool = False) -> "RenderManager":
|
||||
return RenderManager(self._generator, self._root_dir, generated, stubs, registry, force)
|
||||
return RenderManager(self._generator, generated, stubs, registry, force)
|
||||
|
||||
|
||||
class RenderManager(Renderer):
|
||||
@@ -85,10 +81,10 @@ class RenderManager(Renderer):
|
||||
pre: str
|
||||
post: typing.Optional[str] = None
|
||||
|
||||
def __init__(self, generator: pathlib.Path, root_dir: pathlib.Path, generated: typing.Iterable[pathlib.Path],
|
||||
def __init__(self, generator: pathlib.Path, generated: typing.Iterable[pathlib.Path],
|
||||
stubs: typing.Iterable[pathlib.Path],
|
||||
registry: pathlib.Path, force: bool = False):
|
||||
super().__init__(generator, root_dir)
|
||||
super().__init__(generator)
|
||||
self._registry_path = registry
|
||||
self._force = force
|
||||
self._hashes = {}
|
||||
@@ -117,10 +113,13 @@ class RenderManager(Renderer):
|
||||
self._hashes.pop(self._get_path(f), None)
|
||||
# clean up the registry from files that do not exist any more
|
||||
for f in list(self._hashes):
|
||||
if not (self._root_dir / f).exists():
|
||||
if not (self._registry_path.parent / f).exists():
|
||||
self._hashes.pop(f)
|
||||
self._dump_registry()
|
||||
|
||||
def _get_path(self, file: pathlib.Path):
|
||||
return file.relative_to(self._registry_path.parent)
|
||||
|
||||
def _do_write(self, mnemonic: str, contents: str, output: pathlib.Path):
|
||||
hash = self._hash_string(contents)
|
||||
rel_output = self._get_path(output)
|
||||
@@ -186,13 +185,16 @@ class RenderManager(Renderer):
|
||||
try:
|
||||
with open(self._registry_path) as reg:
|
||||
for line in reg:
|
||||
filename, prehash, posthash = line.split()
|
||||
self._hashes[pathlib.Path(filename)] = self.Hashes(prehash, posthash)
|
||||
if line.strip():
|
||||
filename, prehash, posthash = line.split()
|
||||
self._hashes[pathlib.Path(filename)] = self.Hashes(prehash, posthash)
|
||||
except FileNotFoundError:
|
||||
pass
|
||||
|
||||
def _dump_registry(self):
|
||||
self._registry_path.parent.mkdir(parents=True, exist_ok=True)
|
||||
with open(self._registry_path, 'w') as out:
|
||||
with open(self._registry_path, 'w') as out, open(self._registry_path.parent / ".gitattributes", "w") as attrs:
|
||||
print(self._registry_path.name, "linguist-generated", file=attrs)
|
||||
for f, hashes in sorted(self._hashes.items()):
|
||||
print(f, hashes.pre, hashes.post, file=out)
|
||||
print(f, "linguist-generated", file=attrs)
|
||||
|
||||
@@ -26,7 +26,7 @@ def ql_output_path(): return paths.root_dir / "ql/lib/other/path"
|
||||
def ql_test_output_path(): return paths.root_dir / "ql/test/path"
|
||||
|
||||
|
||||
def generated_registry_path(): return paths.root_dir / "registry.list"
|
||||
def generated_registry_path(): return paths.root_dir / "ql/registry.list"
|
||||
|
||||
|
||||
def import_file(): return stub_path().with_suffix(".qll")
|
||||
|
||||
@@ -24,14 +24,31 @@ def pystache_renderer(pystache_renderer_cls):
|
||||
|
||||
@pytest.fixture
|
||||
def sut(pystache_renderer):
|
||||
return render.Renderer(generator, paths.root_dir)
|
||||
return render.Renderer(generator)
|
||||
|
||||
|
||||
def assert_file(file, text):
|
||||
assert file.is_file()
|
||||
with open(file) as inp:
|
||||
assert inp.read() == text
|
||||
|
||||
|
||||
def create_registry(files_and_hashes):
|
||||
if not files_and_hashes:
|
||||
return ""
|
||||
return "\n".join(" ".join(data) for data in files_and_hashes) + "\n"
|
||||
|
||||
|
||||
def write_registry(file, *files_and_hashes):
|
||||
write(file, create_registry(files_and_hashes))
|
||||
|
||||
|
||||
def assert_registry(file, *files_and_hashes):
|
||||
assert_file(file, create_registry(files_and_hashes))
|
||||
files = [file.name] + [f for f, _, _ in files_and_hashes]
|
||||
assert_file(file.parent / ".gitattributes", "\n".join(f"{f} linguist-generated" for f in files) + "\n")
|
||||
|
||||
|
||||
def hash(text):
|
||||
h = hashlib.sha256()
|
||||
h.update(text.encode())
|
||||
@@ -50,7 +67,7 @@ def test_render(pystache_renderer, sut):
|
||||
data = mock.Mock(spec=("template",))
|
||||
text = "some text"
|
||||
pystache_renderer.render_name.side_effect = (text,)
|
||||
output = paths.root_dir / "some/output.txt"
|
||||
output = paths.root_dir / "a/some/output.txt"
|
||||
sut.render(data, output)
|
||||
|
||||
assert_file(output, text)
|
||||
@@ -63,16 +80,16 @@ def test_managed_render(pystache_renderer, sut):
|
||||
data = mock.Mock(spec=("template",))
|
||||
text = "some text"
|
||||
pystache_renderer.render_name.side_effect = (text,)
|
||||
output = paths.root_dir / "some/output.txt"
|
||||
output = paths.root_dir / "a/some/output.txt"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(registry)
|
||||
write_registry(registry)
|
||||
|
||||
with sut.manage(generated=(), stubs=(), registry=registry) as renderer:
|
||||
renderer.render(data, output)
|
||||
assert renderer.written == {output}
|
||||
assert_file(output, text)
|
||||
|
||||
assert_file(registry, f"some/output.txt {hash(text)} {hash(text)}\n")
|
||||
assert_registry(registry, ("some/output.txt", hash(text), hash(text)))
|
||||
assert pystache_renderer.mock_calls == [
|
||||
mock.call.render_name(data.template, data, generator=generator),
|
||||
]
|
||||
@@ -82,7 +99,7 @@ def test_managed_render_with_no_registry(pystache_renderer, sut):
|
||||
data = mock.Mock(spec=("template",))
|
||||
text = "some text"
|
||||
pystache_renderer.render_name.side_effect = (text,)
|
||||
output = paths.root_dir / "some/output.txt"
|
||||
output = paths.root_dir / "a/some/output.txt"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
|
||||
with sut.manage(generated=(), stubs=(), registry=registry) as renderer:
|
||||
@@ -90,7 +107,7 @@ def test_managed_render_with_no_registry(pystache_renderer, sut):
|
||||
assert renderer.written == {output}
|
||||
assert_file(output, text)
|
||||
|
||||
assert_file(registry, f"some/output.txt {hash(text)} {hash(text)}\n")
|
||||
assert_registry(registry, ("some/output.txt", hash(text), hash(text)))
|
||||
assert pystache_renderer.mock_calls == [
|
||||
mock.call.render_name(data.template, data, generator=generator),
|
||||
]
|
||||
@@ -101,9 +118,9 @@ def test_managed_render_with_post_processing(pystache_renderer, sut):
|
||||
text = "some text"
|
||||
postprocessed_text = "some other text"
|
||||
pystache_renderer.render_name.side_effect = (text,)
|
||||
output = paths.root_dir / "some/output.txt"
|
||||
output = paths.root_dir / "a/some/output.txt"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(registry)
|
||||
write_registry(registry)
|
||||
|
||||
with sut.manage(generated=(), stubs=(), registry=registry) as renderer:
|
||||
renderer.render(data, output)
|
||||
@@ -111,36 +128,36 @@ def test_managed_render_with_post_processing(pystache_renderer, sut):
|
||||
assert_file(output, text)
|
||||
write(output, postprocessed_text)
|
||||
|
||||
assert_file(registry, f"some/output.txt {hash(text)} {hash(postprocessed_text)}\n")
|
||||
assert_registry(registry, ("some/output.txt", hash(text), hash(postprocessed_text)))
|
||||
assert pystache_renderer.mock_calls == [
|
||||
mock.call.render_name(data.template, data, generator=generator),
|
||||
]
|
||||
|
||||
|
||||
def test_managed_render_with_erasing(pystache_renderer, sut):
|
||||
output = paths.root_dir / "some/output.txt"
|
||||
stub = paths.root_dir / "some/stub.txt"
|
||||
output = paths.root_dir / "a/some/output.txt"
|
||||
stub = paths.root_dir / "a/some/stub.txt"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(output)
|
||||
write(stub, "// generated bla bla")
|
||||
write(registry)
|
||||
write_registry(registry)
|
||||
|
||||
with sut.manage(generated=(output,), stubs=(stub,), registry=registry) as renderer:
|
||||
pass
|
||||
|
||||
assert not output.is_file()
|
||||
assert not stub.is_file()
|
||||
assert_file(registry, "")
|
||||
assert_registry(registry)
|
||||
assert pystache_renderer.mock_calls == []
|
||||
|
||||
|
||||
def test_managed_render_with_skipping_of_generated_file(pystache_renderer, sut):
|
||||
data = mock.Mock(spec=("template",))
|
||||
output = paths.root_dir / "some/output.txt"
|
||||
output = paths.root_dir / "a/some/output.txt"
|
||||
some_output = "some output"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(output, some_output)
|
||||
write(registry, f"some/output.txt {hash(some_output)} {hash(some_output)}\n")
|
||||
write_registry(registry, ("some/output.txt", hash(some_output), hash(some_output)))
|
||||
|
||||
pystache_renderer.render_name.side_effect = (some_output,)
|
||||
|
||||
@@ -149,7 +166,7 @@ def test_managed_render_with_skipping_of_generated_file(pystache_renderer, sut):
|
||||
assert renderer.written == set()
|
||||
assert_file(output, some_output)
|
||||
|
||||
assert_file(registry, f"some/output.txt {hash(some_output)} {hash(some_output)}\n")
|
||||
assert_registry(registry, ("some/output.txt", hash(some_output), hash(some_output)))
|
||||
assert pystache_renderer.mock_calls == [
|
||||
mock.call.render_name(data.template, data, generator=generator),
|
||||
]
|
||||
@@ -157,12 +174,12 @@ def test_managed_render_with_skipping_of_generated_file(pystache_renderer, sut):
|
||||
|
||||
def test_managed_render_with_skipping_of_stub_file(pystache_renderer, sut):
|
||||
data = mock.Mock(spec=("template",))
|
||||
stub = paths.root_dir / "some/stub.txt"
|
||||
stub = paths.root_dir / "a/some/stub.txt"
|
||||
some_output = "// generated some output"
|
||||
some_processed_output = "// generated some processed output"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(stub, some_processed_output)
|
||||
write(registry, f"some/stub.txt {hash(some_output)} {hash(some_processed_output)}\n")
|
||||
write_registry(registry, ("some/stub.txt", hash(some_output), hash(some_processed_output)))
|
||||
|
||||
pystache_renderer.render_name.side_effect = (some_output,)
|
||||
|
||||
@@ -171,45 +188,45 @@ def test_managed_render_with_skipping_of_stub_file(pystache_renderer, sut):
|
||||
assert renderer.written == set()
|
||||
assert_file(stub, some_processed_output)
|
||||
|
||||
assert_file(registry, f"some/stub.txt {hash(some_output)} {hash(some_processed_output)}\n")
|
||||
assert_registry(registry, ("some/stub.txt", hash(some_output), hash(some_processed_output)))
|
||||
assert pystache_renderer.mock_calls == [
|
||||
mock.call.render_name(data.template, data, generator=generator),
|
||||
]
|
||||
|
||||
|
||||
def test_managed_render_with_modified_generated_file(pystache_renderer, sut):
|
||||
output = paths.root_dir / "some/output.txt"
|
||||
output = paths.root_dir / "a/some/output.txt"
|
||||
some_processed_output = "// some processed output"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(output, "// something else")
|
||||
write(registry, f"some/output.txt whatever {hash(some_processed_output)}\n")
|
||||
write_registry(registry, ("some/output.txt", "whatever", hash(some_processed_output)))
|
||||
|
||||
with pytest.raises(render.Error):
|
||||
sut.manage(generated=(output,), stubs=(), registry=registry)
|
||||
|
||||
|
||||
def test_managed_render_with_modified_stub_file_still_marked_as_generated(pystache_renderer, sut):
|
||||
stub = paths.root_dir / "some/stub.txt"
|
||||
stub = paths.root_dir / "a/some/stub.txt"
|
||||
some_processed_output = "// generated some processed output"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(stub, "// generated something else")
|
||||
write(registry, f"some/stub.txt whatever {hash(some_processed_output)}\n")
|
||||
write_registry(registry, ("some/stub.txt", "whatever", hash(some_processed_output)))
|
||||
|
||||
with pytest.raises(render.Error):
|
||||
sut.manage(generated=(), stubs=(stub,), registry=registry)
|
||||
|
||||
|
||||
def test_managed_render_with_modified_stub_file_not_marked_as_generated(pystache_renderer, sut):
|
||||
stub = paths.root_dir / "some/stub.txt"
|
||||
stub = paths.root_dir / "a/some/stub.txt"
|
||||
some_processed_output = "// generated some processed output"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(stub, "// no more generated")
|
||||
write(registry, f"some/stub.txt whatever {hash(some_processed_output)}\n")
|
||||
write_registry(registry, ("some/stub.txt", "whatever", hash(some_processed_output)))
|
||||
|
||||
with sut.manage(generated=(), stubs=(stub,), registry=registry) as renderer:
|
||||
pass
|
||||
|
||||
assert_file(registry, "")
|
||||
assert_registry(registry)
|
||||
|
||||
|
||||
class MyError(Exception):
|
||||
@@ -220,45 +237,49 @@ def test_managed_render_exception_drops_written_and_inexsistent_from_registry(py
|
||||
data = mock.Mock(spec=("template",))
|
||||
text = "some text"
|
||||
pystache_renderer.render_name.side_effect = (text,)
|
||||
output = paths.root_dir / "some/output.txt"
|
||||
registry = paths.root_dir / "x/registry.list"
|
||||
output = paths.root_dir / "a/some/output.txt"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(output, text)
|
||||
write(paths.root_dir / "a")
|
||||
write(paths.root_dir / "c")
|
||||
write(registry, "a a a\n"
|
||||
f"some/output.txt whatever {hash(text)}\n"
|
||||
"b b b\n"
|
||||
"c c c")
|
||||
write(paths.root_dir / "a/a")
|
||||
write(paths.root_dir / "a/c")
|
||||
write_registry(registry,
|
||||
"aaa",
|
||||
("some/output.txt", "whatever", hash(text)),
|
||||
"bbb",
|
||||
"ccc")
|
||||
|
||||
with pytest.raises(MyError):
|
||||
with sut.manage(generated=(), stubs=(), registry=registry) as renderer:
|
||||
renderer.render(data, output)
|
||||
raise MyError
|
||||
|
||||
assert_file(registry, "a a a\nc c c\n")
|
||||
assert_registry(registry, "aaa", "ccc")
|
||||
|
||||
|
||||
def test_managed_render_drops_inexsistent_from_registry(pystache_renderer, sut):
|
||||
registry = paths.root_dir / "x/registry.list"
|
||||
write(paths.root_dir / "a")
|
||||
write(paths.root_dir / "c")
|
||||
write(registry, f"a {hash('')} {hash('')}\n"
|
||||
"b b b\n"
|
||||
f"c {hash('')} {hash('')}")
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(paths.root_dir / "a/a")
|
||||
write(paths.root_dir / "a/c")
|
||||
write_registry(registry,
|
||||
("a", hash(''), hash('')),
|
||||
"bbb",
|
||||
("c", hash(''), hash('')))
|
||||
|
||||
with sut.manage(generated=(), stubs=(), registry=registry):
|
||||
pass
|
||||
|
||||
assert_file(registry, f"a {hash('')} {hash('')}\nc {hash('')} {hash('')}\n")
|
||||
assert_registry(registry,
|
||||
("a", hash(''), hash('')),
|
||||
("c", hash(''), hash('')))
|
||||
|
||||
|
||||
def test_managed_render_exception_does_not_erase(pystache_renderer, sut):
|
||||
output = paths.root_dir / "some/output.txt"
|
||||
stub = paths.root_dir / "some/stub.txt"
|
||||
output = paths.root_dir / "a/some/output.txt"
|
||||
stub = paths.root_dir / "a/some/stub.txt"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(output)
|
||||
write(stub, "// generated bla bla")
|
||||
write(registry)
|
||||
write_registry(registry)
|
||||
|
||||
with pytest.raises(MyError):
|
||||
with sut.manage(generated=(output,), stubs=(stub,), registry=registry) as renderer:
|
||||
@@ -288,11 +309,11 @@ def test_render_with_extensions(pystache_renderer, sut):
|
||||
|
||||
def test_managed_render_with_force_not_skipping_generated_file(pystache_renderer, sut):
|
||||
data = mock.Mock(spec=("template",))
|
||||
output = paths.root_dir / "some/output.txt"
|
||||
output = paths.root_dir / "a/some/output.txt"
|
||||
some_output = "some output"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(output, some_output)
|
||||
write(registry, f"some/output.txt {hash(some_output)} {hash(some_output)}\n")
|
||||
write_registry(registry, ("some/output.txt", hash(some_output), hash(some_output)))
|
||||
|
||||
pystache_renderer.render_name.side_effect = (some_output,)
|
||||
|
||||
@@ -301,7 +322,7 @@ def test_managed_render_with_force_not_skipping_generated_file(pystache_renderer
|
||||
assert renderer.written == {output}
|
||||
assert_file(output, some_output)
|
||||
|
||||
assert_file(registry, f"some/output.txt {hash(some_output)} {hash(some_output)}\n")
|
||||
assert_registry(registry, ("some/output.txt", hash(some_output), hash(some_output)))
|
||||
assert pystache_renderer.mock_calls == [
|
||||
mock.call.render_name(data.template, data, generator=generator),
|
||||
]
|
||||
@@ -309,12 +330,12 @@ def test_managed_render_with_force_not_skipping_generated_file(pystache_renderer
|
||||
|
||||
def test_managed_render_with_force_not_skipping_stub_file(pystache_renderer, sut):
|
||||
data = mock.Mock(spec=("template",))
|
||||
stub = paths.root_dir / "some/stub.txt"
|
||||
stub = paths.root_dir / "a/some/stub.txt"
|
||||
some_output = "// generated some output"
|
||||
some_processed_output = "// generated some processed output"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(stub, some_processed_output)
|
||||
write(registry, f"some/stub.txt {hash(some_output)} {hash(some_processed_output)}\n")
|
||||
write_registry(registry, ("some/stub.txt", hash(some_output), hash(some_processed_output)))
|
||||
|
||||
pystache_renderer.render_name.side_effect = (some_output,)
|
||||
|
||||
@@ -323,29 +344,29 @@ def test_managed_render_with_force_not_skipping_stub_file(pystache_renderer, sut
|
||||
assert renderer.written == {stub}
|
||||
assert_file(stub, some_output)
|
||||
|
||||
assert_file(registry, f"some/stub.txt {hash(some_output)} {hash(some_output)}\n")
|
||||
assert_registry(registry, ("some/stub.txt", hash(some_output), hash(some_output)))
|
||||
assert pystache_renderer.mock_calls == [
|
||||
mock.call.render_name(data.template, data, generator=generator),
|
||||
]
|
||||
|
||||
|
||||
def test_managed_render_with_force_ignores_modified_generated_file(sut):
|
||||
output = paths.root_dir / "some/output.txt"
|
||||
output = paths.root_dir / "a/some/output.txt"
|
||||
some_processed_output = "// some processed output"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(output, "// something else")
|
||||
write(registry, f"some/output.txt whatever {hash(some_processed_output)}\n")
|
||||
write_registry(registry, ("some/output.txt", "whatever", hash(some_processed_output)))
|
||||
|
||||
with sut.manage(generated=(output,), stubs=(), registry=registry, force=True):
|
||||
pass
|
||||
|
||||
|
||||
def test_managed_render_with_force_ignores_modified_stub_file_still_marked_as_generated(sut):
|
||||
stub = paths.root_dir / "some/stub.txt"
|
||||
stub = paths.root_dir / "a/some/stub.txt"
|
||||
some_processed_output = "// generated some processed output"
|
||||
registry = paths.root_dir / "a/registry.list"
|
||||
write(stub, "// generated something else")
|
||||
write(registry, f"some/stub.txt whatever {hash(some_processed_output)}\n")
|
||||
write_registry(registry, ("some/stub.txt", "whatever", hash(some_processed_output)))
|
||||
|
||||
with sut.manage(generated=(), stubs=(stub,), registry=registry, force=True):
|
||||
pass
|
||||
|
||||
1850
swift/ql/.generated.list
generated
1850
swift/ql/.generated.list
generated
File diff suppressed because it is too large
Load Diff
926
swift/ql/.gitattributes
vendored
Normal file
926
swift/ql/.gitattributes
vendored
Normal file
@@ -0,0 +1,926 @@
|
||||
.generated.list linguist-generated
|
||||
lib/codeql/swift/elements/AvailabilityInfoConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/AvailabilitySpec.qll linguist-generated
|
||||
lib/codeql/swift/elements/CommentConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/DbFile.qll linguist-generated
|
||||
lib/codeql/swift/elements/DbFileConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/DbLocation.qll linguist-generated
|
||||
lib/codeql/swift/elements/DbLocationConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/DiagnosticsConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/ErrorElement.qll linguist-generated
|
||||
lib/codeql/swift/elements/KeyPathComponentConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/OtherAvailabilitySpecConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/PlatformVersionAvailabilitySpecConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/UnspecifiedElementConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/AbstractStorageDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/AbstractTypeParamDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/AccessorConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/AccessorOrNamedFunction.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/AssociatedTypeDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/AssociatedTypeDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/CapturedDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/ClassDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/ClassDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/ConcreteVarDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/ConcreteVarDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/DeinitializerConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/EnumCaseDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/EnumDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/EnumDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/EnumElementDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/ExtensionDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/GenericContext.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/GenericTypeDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/GenericTypeParamDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/GenericTypeParamDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/IfConfigDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/ImportDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/InfixOperatorDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/InfixOperatorDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/InitializerConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/MissingMemberDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/ModuleDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/ModuleDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/NamedFunction.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/NamedFunctionConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/OpaqueTypeDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/OpaqueTypeDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/ParamDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/PatternBindingDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/PostfixOperatorDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/PostfixOperatorDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/PoundDiagnosticDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/PrecedenceGroupDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/PrefixOperatorDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/PrefixOperatorDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/ProtocolDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/ProtocolDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/StructDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/StructDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/SubscriptDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/TopLevelCodeDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/TypeAliasDecl.qll linguist-generated
|
||||
lib/codeql/swift/elements/decl/TypeAliasDeclConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/AbiSafeConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/AbiSafeConversionExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/AnyHashableErasureExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/AnyHashableErasureExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/AnyTryExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/AppliedPropertyWrapperExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/AppliedPropertyWrapperExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ArchetypeToSuperExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ArchetypeToSuperExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ArrayExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ArrayToPointerExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ArrayToPointerExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/AssignExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/AutoClosureExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/AwaitExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/BinaryExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/BindOptionalExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/BooleanLiteralExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/BridgeFromObjCExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/BridgeFromObjCExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/BridgeToObjCExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/BridgeToObjCExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/BuiltinLiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/CallExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/CallExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/CaptureListExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/CheckedCastExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ClassMetatypeToObjectExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ClassMetatypeToObjectExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/CoerceExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/CoerceExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/CollectionExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/CollectionUpcastConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/CollectionUpcastConversionExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ConditionalBridgeFromObjCExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ConditionalBridgeFromObjCExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ConditionalCheckedCastExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ConditionalCheckedCastExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/CovariantFunctionConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/CovariantFunctionConversionExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/CovariantReturnConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/CovariantReturnConversionExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DeclRefExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DefaultArgumentExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DerivedToBaseExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DerivedToBaseExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DestructureTupleExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DestructureTupleExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DictionaryExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DifferentiableFunctionExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DifferentiableFunctionExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DifferentiableFunctionExtractOriginalExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DiscardAssignmentExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DotSelfExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DotSyntaxBaseIgnoredExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DotSyntaxCallExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DynamicLookupExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DynamicMemberRefExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DynamicSubscriptExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/DynamicTypeExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/EnumIsCaseExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ErasureExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ErasureExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ErrorExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ErrorExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ExistentialMetatypeToObjectExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ExistentialMetatypeToObjectExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ExplicitClosureExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ExplicitClosureExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/FloatLiteralExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ForceTryExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ForceValueExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ForcedCheckedCastExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ForcedCheckedCastExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ForeignObjectConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ForeignObjectConversionExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/FunctionConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/FunctionConversionExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/IfExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/InOutExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/InOutToPointerExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/InOutToPointerExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/InitializerRefCallExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/InjectIntoOptionalExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/InjectIntoOptionalExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/IntegerLiteralExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/InterpolatedStringLiteralExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/IsExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/KeyPathApplicationExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/KeyPathDotExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/KeyPathExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/LazyInitializationExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/LinearFunctionExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/LinearFunctionExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/LinearFunctionExtractOriginalExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/LinearFunctionExtractOriginalExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/LinearToDifferentiableFunctionExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/LinearToDifferentiableFunctionExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/LiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/LoadExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/LoadExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/LookupExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/MagicIdentifierLiteralExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/MakeTemporarilyEscapableExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/MemberRefExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/MetatypeConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/MetatypeConversionExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/NilLiteralExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/NumberLiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ObjCSelectorExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ObjectLiteralExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/OneWayExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/OpaqueValueExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/OpaqueValueExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/OpenExistentialExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/OpenExistentialExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/OptionalEvaluationExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/OptionalEvaluationExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/OptionalTryExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/OtherInitializerRefExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/OverloadedDeclRefExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/OverloadedDeclRefExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ParenExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/PointerToPointerExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/PointerToPointerExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/PostfixUnaryExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/PrefixUnaryExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/PropertyWrapperValuePlaceholderExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/PropertyWrapperValuePlaceholderExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ProtocolMetatypeToObjectExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/ProtocolMetatypeToObjectExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/RebindSelfInInitializerExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/RegexLiteralExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/SelfApplyExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/SequenceExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/SequenceExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/StringLiteralExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/StringToPointerExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/StringToPointerExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/SubscriptExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/SuperRefExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/TapExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/TryExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/TupleElementExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/TupleExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/TypeExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnderlyingToOpaqueExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnderlyingToOpaqueExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnevaluatedInstanceExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnevaluatedInstanceExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnresolvedDeclRefExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnresolvedDotExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnresolvedMemberChainResultExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnresolvedMemberChainResultExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnresolvedMemberExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnresolvedMemberExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnresolvedPatternExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnresolvedPatternExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnresolvedSpecializeExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnresolvedSpecializeExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnresolvedTypeConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/UnresolvedTypeConversionExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/expr/VarargExpansionExprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/pattern/AnyPatternConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/pattern/BindingPatternConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/pattern/BoolPatternConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/pattern/EnumElementPatternConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/pattern/ExprPatternConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/pattern/IsPatternConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/pattern/NamedPatternConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/pattern/OptionalSomePatternConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/pattern/ParenPatternConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/pattern/TuplePatternConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/pattern/TypedPatternConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/BraceStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/BreakStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/CaseLabelItemConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/CaseStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/ConditionElementConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/ContinueStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/DeferStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/DoCatchStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/DoStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/FailStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/FallthroughStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/ForEachStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/GuardStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/IfStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/LabeledConditionalStmt.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/PoundAssertStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/RepeatWhileStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/ReturnStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/Stmt.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/StmtConditionConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/SwitchStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/ThrowStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/WhileStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/stmt/YieldStmtConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/AnyBuiltinIntegerType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/AnyFunctionType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/AnyGenericType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/AnyMetatypeType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ArchetypeType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ArraySliceType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ArraySliceTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BoundGenericClassType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BoundGenericClassTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BoundGenericEnumType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BoundGenericEnumTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BoundGenericStructType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BoundGenericStructTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BoundGenericType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinBridgeObjectType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinBridgeObjectTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinDefaultActorStorageType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinDefaultActorStorageTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinExecutorType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinExecutorTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinFloatType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinFloatTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinIntegerLiteralType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinIntegerLiteralTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinIntegerType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinIntegerTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinJobType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinJobTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinNativeObjectType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinNativeObjectTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinRawPointerType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinRawPointerTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinRawUnsafeContinuationType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinRawUnsafeContinuationTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinUnsafeValueBufferType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinUnsafeValueBufferTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinVectorType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/BuiltinVectorTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ClassType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ClassTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/DependentMemberType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/DependentMemberTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/DictionaryType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/DictionaryTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/DynamicSelfType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/DynamicSelfTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/EnumType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/EnumTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ErrorType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ErrorTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ExistentialMetatypeType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ExistentialMetatypeTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ExistentialType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ExistentialTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/FunctionType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/FunctionTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/GenericFunctionType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/GenericFunctionTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/GenericTypeParamType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/GenericTypeParamTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/InOutType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/InOutTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/LValueTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/MetatypeType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/MetatypeTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ModuleType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ModuleTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/NominalOrBoundGenericNominalType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/OpaqueTypeArchetypeType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/OpaqueTypeArchetypeTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/OpenedArchetypeType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/OpenedArchetypeTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/OptionalType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/OptionalTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ParameterizedProtocolType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ParameterizedProtocolTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ParenType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ParenTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/PrimaryArchetypeType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/PrimaryArchetypeTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ProtocolCompositionType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ProtocolCompositionTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ProtocolType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ProtocolTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/ReferenceStorageType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/StructType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/StructTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/SubstitutableType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/SugarType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/SyntaxSugarType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/TupleType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/TupleTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/TypeAliasTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/TypeReprConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/UnarySyntaxSugarType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/UnboundGenericType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/UnboundGenericTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/UnmanagedStorageType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/UnmanagedStorageTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/UnownedStorageType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/UnownedStorageTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/UnresolvedType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/UnresolvedTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/VariadicSequenceType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/VariadicSequenceTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/WeakStorageType.qll linguist-generated
|
||||
lib/codeql/swift/elements/type/WeakStorageTypeConstructor.qll linguist-generated
|
||||
lib/codeql/swift/elements.qll linguist-generated
|
||||
lib/codeql/swift/generated/AstNode.qll linguist-generated
|
||||
lib/codeql/swift/generated/AvailabilityInfo.qll linguist-generated
|
||||
lib/codeql/swift/generated/AvailabilitySpec.qll linguist-generated
|
||||
lib/codeql/swift/generated/Callable.qll linguist-generated
|
||||
lib/codeql/swift/generated/Comment.qll linguist-generated
|
||||
lib/codeql/swift/generated/DbFile.qll linguist-generated
|
||||
lib/codeql/swift/generated/DbLocation.qll linguist-generated
|
||||
lib/codeql/swift/generated/Diagnostics.qll linguist-generated
|
||||
lib/codeql/swift/generated/Element.qll linguist-generated
|
||||
lib/codeql/swift/generated/ErrorElement.qll linguist-generated
|
||||
lib/codeql/swift/generated/File.qll linguist-generated
|
||||
lib/codeql/swift/generated/KeyPathComponent.qll linguist-generated
|
||||
lib/codeql/swift/generated/Locatable.qll linguist-generated
|
||||
lib/codeql/swift/generated/Location.qll linguist-generated
|
||||
lib/codeql/swift/generated/OtherAvailabilitySpec.qll linguist-generated
|
||||
lib/codeql/swift/generated/ParentChild.qll linguist-generated
|
||||
lib/codeql/swift/generated/PlatformVersionAvailabilitySpec.qll linguist-generated
|
||||
lib/codeql/swift/generated/PureSynthConstructors.qll linguist-generated
|
||||
lib/codeql/swift/generated/Raw.qll linguist-generated
|
||||
lib/codeql/swift/generated/Synth.qll linguist-generated
|
||||
lib/codeql/swift/generated/SynthConstructors.qll linguist-generated
|
||||
lib/codeql/swift/generated/UnknownFile.qll linguist-generated
|
||||
lib/codeql/swift/generated/UnknownLocation.qll linguist-generated
|
||||
lib/codeql/swift/generated/UnspecifiedElement.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/AbstractStorageDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/AbstractTypeParamDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/Accessor.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/AccessorOrNamedFunction.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/AssociatedTypeDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/CapturedDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/ClassDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/ConcreteVarDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/Decl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/Deinitializer.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/EnumCaseDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/EnumDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/EnumElementDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/ExtensionDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/Function.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/GenericContext.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/GenericTypeDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/GenericTypeParamDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/IfConfigDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/ImportDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/InfixOperatorDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/Initializer.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/MissingMemberDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/ModuleDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/NamedFunction.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/NominalTypeDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/OpaqueTypeDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/OperatorDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/ParamDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/PatternBindingDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/PostfixOperatorDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/PoundDiagnosticDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/PrecedenceGroupDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/PrefixOperatorDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/ProtocolDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/StructDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/SubscriptDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/TopLevelCodeDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/TypeAliasDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/TypeDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/ValueDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/decl/VarDecl.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/AbiSafeConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/AnyHashableErasureExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/AnyTryExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/AppliedPropertyWrapperExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ApplyExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ArchetypeToSuperExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/Argument.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ArrayExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ArrayToPointerExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/AssignExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/AutoClosureExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/AwaitExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/BinaryExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/BindOptionalExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/BooleanLiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/BridgeFromObjCExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/BridgeToObjCExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/BuiltinLiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/CallExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/CaptureListExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/CheckedCastExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ClassMetatypeToObjectExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ClosureExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/CoerceExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/CollectionExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/CollectionUpcastConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ConditionalBridgeFromObjCExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ConditionalCheckedCastExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/CovariantFunctionConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/CovariantReturnConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DeclRefExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DefaultArgumentExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DerivedToBaseExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DestructureTupleExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DictionaryExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DifferentiableFunctionExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DifferentiableFunctionExtractOriginalExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DiscardAssignmentExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DotSelfExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DotSyntaxBaseIgnoredExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DotSyntaxCallExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DynamicLookupExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DynamicMemberRefExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DynamicSubscriptExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/DynamicTypeExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/EnumIsCaseExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ErasureExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ErrorExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ExistentialMetatypeToObjectExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ExplicitCastExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ExplicitClosureExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/Expr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/FloatLiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ForceTryExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ForceValueExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ForcedCheckedCastExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ForeignObjectConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/FunctionConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/IdentityExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/IfExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ImplicitConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/InOutExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/InOutToPointerExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/InitializerRefCallExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/InjectIntoOptionalExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/IntegerLiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/InterpolatedStringLiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/IsExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/KeyPathApplicationExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/KeyPathDotExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/KeyPathExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/LazyInitializationExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/LinearFunctionExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/LinearFunctionExtractOriginalExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/LinearToDifferentiableFunctionExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/LiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/LoadExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/LookupExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/MagicIdentifierLiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/MakeTemporarilyEscapableExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/MemberRefExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/MetatypeConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/MethodLookupExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/NilLiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/NumberLiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ObjCSelectorExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ObjectLiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/OneWayExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/OpaqueValueExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/OpenExistentialExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/OptionalEvaluationExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/OptionalTryExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/OtherInitializerRefExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/OverloadedDeclRefExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ParenExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/PointerToPointerExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/PostfixUnaryExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/PrefixUnaryExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/PropertyWrapperValuePlaceholderExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/ProtocolMetatypeToObjectExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/RebindSelfInInitializerExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/RegexLiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/SelfApplyExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/SequenceExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/StringLiteralExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/StringToPointerExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/SubscriptExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/SuperRefExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/TapExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/TryExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/TupleElementExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/TupleExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/TypeExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/UnderlyingToOpaqueExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/UnevaluatedInstanceExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/UnresolvedDeclRefExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/UnresolvedDotExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/UnresolvedMemberChainResultExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/UnresolvedMemberExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/UnresolvedPatternExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/UnresolvedSpecializeExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/UnresolvedTypeConversionExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/expr/VarargExpansionExpr.qll linguist-generated
|
||||
lib/codeql/swift/generated/pattern/AnyPattern.qll linguist-generated
|
||||
lib/codeql/swift/generated/pattern/BindingPattern.qll linguist-generated
|
||||
lib/codeql/swift/generated/pattern/BoolPattern.qll linguist-generated
|
||||
lib/codeql/swift/generated/pattern/EnumElementPattern.qll linguist-generated
|
||||
lib/codeql/swift/generated/pattern/ExprPattern.qll linguist-generated
|
||||
lib/codeql/swift/generated/pattern/IsPattern.qll linguist-generated
|
||||
lib/codeql/swift/generated/pattern/NamedPattern.qll linguist-generated
|
||||
lib/codeql/swift/generated/pattern/OptionalSomePattern.qll linguist-generated
|
||||
lib/codeql/swift/generated/pattern/ParenPattern.qll linguist-generated
|
||||
lib/codeql/swift/generated/pattern/Pattern.qll linguist-generated
|
||||
lib/codeql/swift/generated/pattern/TuplePattern.qll linguist-generated
|
||||
lib/codeql/swift/generated/pattern/TypedPattern.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/BraceStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/BreakStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/CaseLabelItem.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/CaseStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/ConditionElement.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/ContinueStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/DeferStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/DoCatchStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/DoStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/FailStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/FallthroughStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/ForEachStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/GuardStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/IfStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/LabeledConditionalStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/LabeledStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/PoundAssertStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/RepeatWhileStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/ReturnStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/Stmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/StmtCondition.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/SwitchStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/ThrowStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/WhileStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/stmt/YieldStmt.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/AnyBuiltinIntegerType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/AnyFunctionType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/AnyGenericType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/AnyMetatypeType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/ArchetypeType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/ArraySliceType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BoundGenericClassType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BoundGenericEnumType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BoundGenericStructType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BoundGenericType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BuiltinBridgeObjectType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BuiltinDefaultActorStorageType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BuiltinExecutorType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BuiltinFloatType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BuiltinIntegerLiteralType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BuiltinIntegerType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BuiltinJobType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BuiltinNativeObjectType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BuiltinRawPointerType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BuiltinRawUnsafeContinuationType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BuiltinType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BuiltinUnsafeValueBufferType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/BuiltinVectorType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/ClassType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/DependentMemberType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/DictionaryType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/DynamicSelfType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/EnumType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/ErrorType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/ExistentialMetatypeType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/ExistentialType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/FunctionType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/GenericFunctionType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/GenericTypeParamType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/InOutType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/LValueType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/MetatypeType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/ModuleType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/NominalOrBoundGenericNominalType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/NominalType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/OpaqueTypeArchetypeType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/OpenedArchetypeType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/OptionalType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/ParameterizedProtocolType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/ParenType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/PrimaryArchetypeType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/ProtocolCompositionType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/ProtocolType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/ReferenceStorageType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/StructType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/SubstitutableType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/SugarType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/SyntaxSugarType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/TupleType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/Type.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/TypeAliasType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/TypeRepr.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/UnarySyntaxSugarType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/UnboundGenericType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/UnmanagedStorageType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/UnownedStorageType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/UnresolvedType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/VariadicSequenceType.qll linguist-generated
|
||||
lib/codeql/swift/generated/type/WeakStorageType.qll linguist-generated
|
||||
test/extractor-tests/generated/AvailabilityInfo/AvailabilityInfo.ql linguist-generated
|
||||
test/extractor-tests/generated/AvailabilityInfo/AvailabilityInfo_getSpec.ql linguist-generated
|
||||
test/extractor-tests/generated/Comment/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/Diagnostics/Diagnostics.ql linguist-generated
|
||||
test/extractor-tests/generated/File/File.ql linguist-generated
|
||||
test/extractor-tests/generated/KeyPathComponent/KeyPathComponent.ql linguist-generated
|
||||
test/extractor-tests/generated/KeyPathComponent/KeyPathComponent_getDeclRef.ql linguist-generated
|
||||
test/extractor-tests/generated/KeyPathComponent/KeyPathComponent_getSubscriptArgument.ql linguist-generated
|
||||
test/extractor-tests/generated/KeyPathComponent/KeyPathComponent_getTupleIndex.ql linguist-generated
|
||||
test/extractor-tests/generated/OtherAvailabilitySpec/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/PlatformVersionAvailabilitySpec/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/Accessor/Accessor.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/Accessor/Accessor_getBody.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/Accessor/Accessor_getCapture.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/Accessor/Accessor_getGenericTypeParam.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/Accessor/Accessor_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/Accessor/Accessor_getName.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/Accessor/Accessor_getParam.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/Accessor/Accessor_getSelfParam.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/AssociatedTypeDecl/AssociatedTypeDecl.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/AssociatedTypeDecl/AssociatedTypeDecl_getBaseType.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/AssociatedTypeDecl/AssociatedTypeDecl_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/CapturedDecl/CapturedDecl.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/CapturedDecl/CapturedDecl_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ClassDecl/ClassDecl.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ClassDecl/ClassDecl_getBaseType.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ClassDecl/ClassDecl_getGenericTypeParam.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ClassDecl/ClassDecl_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ConcreteVarDecl/ConcreteVarDecl.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ConcreteVarDecl/ConcreteVarDecl_getAccessor.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ConcreteVarDecl/ConcreteVarDecl_getAttachedPropertyWrapperType.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ConcreteVarDecl/ConcreteVarDecl_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ConcreteVarDecl/ConcreteVarDecl_getParentInitializer.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ConcreteVarDecl/ConcreteVarDecl_getParentPattern.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ConcreteVarDecl/ConcreteVarDecl_getPropertyWrapperBackingVar.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ConcreteVarDecl/ConcreteVarDecl_getPropertyWrapperBackingVarBinding.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ConcreteVarDecl/ConcreteVarDecl_getPropertyWrapperProjectionVar.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ConcreteVarDecl/ConcreteVarDecl_getPropertyWrapperProjectionVarBinding.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/Deinitializer/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/EnumCaseDecl/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/EnumDecl/EnumDecl.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/EnumDecl/EnumDecl_getBaseType.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/EnumDecl/EnumDecl_getGenericTypeParam.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/EnumDecl/EnumDecl_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/EnumElementDecl/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/ExtensionDecl/ExtensionDecl.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ExtensionDecl/ExtensionDecl_getGenericTypeParam.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ExtensionDecl/ExtensionDecl_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ExtensionDecl/ExtensionDecl_getProtocol.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/GenericTypeParamDecl/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/IfConfigDecl/IfConfigDecl.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/IfConfigDecl/IfConfigDecl_getActiveElement.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/IfConfigDecl/IfConfigDecl_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ImportDecl/ImportDecl.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ImportDecl/ImportDecl_getDeclaration.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ImportDecl/ImportDecl_getImportedModule.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ImportDecl/ImportDecl_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/InfixOperatorDecl/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/Initializer/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl_getAnExportedModule.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl_getAnImportedModule.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl_getBaseType.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ModuleDecl/ModuleDecl_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/NamedFunction/NamedFunction.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/NamedFunction/NamedFunction_getBody.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/NamedFunction/NamedFunction_getCapture.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/NamedFunction/NamedFunction_getGenericTypeParam.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/NamedFunction/NamedFunction_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/NamedFunction/NamedFunction_getName.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/NamedFunction/NamedFunction_getParam.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/NamedFunction/NamedFunction_getSelfParam.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl_getBaseType.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl_getGenericTypeParam.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/OpaqueTypeDecl/OpaqueTypeDecl_getOpaqueGenericParam.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ParamDecl/ParamDecl.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ParamDecl/ParamDecl_getAccessor.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ParamDecl/ParamDecl_getAttachedPropertyWrapperType.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ParamDecl/ParamDecl_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ParamDecl/ParamDecl_getParentInitializer.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ParamDecl/ParamDecl_getParentPattern.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ParamDecl/ParamDecl_getPropertyWrapperBackingVar.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ParamDecl/ParamDecl_getPropertyWrapperBackingVarBinding.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ParamDecl/ParamDecl_getPropertyWrapperLocalWrappedVar.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ParamDecl/ParamDecl_getPropertyWrapperLocalWrappedVarBinding.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ParamDecl/ParamDecl_getPropertyWrapperProjectionVar.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/ParamDecl/ParamDecl_getPropertyWrapperProjectionVarBinding.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/PatternBindingDecl/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/PostfixOperatorDecl/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/PoundDiagnosticDecl/PoundDiagnosticDecl.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/PoundDiagnosticDecl/PoundDiagnosticDecl_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/decl/PrecedenceGroupDecl/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/PrefixOperatorDecl/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/ProtocolDecl/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/StructDecl/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/SubscriptDecl/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/TopLevelCodeDecl/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/decl/TypeAliasDecl/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/AppliedPropertyWrapperExpr/AppliedPropertyWrapperExpr.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/AppliedPropertyWrapperExpr/AppliedPropertyWrapperExpr_getType.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/Argument/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/ArrayExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/AssignExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/AutoClosureExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/BinaryExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/BindOptionalExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/BooleanLiteralExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/CallExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/CaptureListExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/CoerceExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/ConditionalCheckedCastExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/DeclRefExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/DefaultArgumentExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/DictionaryExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/DiscardAssignmentExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/DotSyntaxBaseIgnoredExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/DotSyntaxCallExpr/DotSyntaxCallExpr.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/DotSyntaxCallExpr/DotSyntaxCallExpr_getArgument.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/DotSyntaxCallExpr/DotSyntaxCallExpr_getType.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/DynamicLookupExpr/DynamicLookupExpr.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/DynamicLookupExpr/DynamicLookupExpr_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/DynamicLookupExpr/DynamicLookupExpr_getType.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/DynamicTypeExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/EnumIsCaseExpr/EnumIsCaseExpr.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/EnumIsCaseExpr/EnumIsCaseExpr_getType.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/ExplicitClosureExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/FloatLiteralExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/ForceTryExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/ForceValueExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/ForcedCheckedCastExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/IdentityExpr/IdentityExpr.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/IdentityExpr/IdentityExpr_getType.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/IfExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/ImplicitConversionExpr/ImplicitConversionExpr.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/ImplicitConversionExpr/ImplicitConversionExpr_getType.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/InOutExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/InitializerRefCallExpr/InitializerRefCallExpr.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/InitializerRefCallExpr/InitializerRefCallExpr_getArgument.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/InitializerRefCallExpr/InitializerRefCallExpr_getType.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/IntegerLiteralExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/InterpolatedStringLiteralExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/IsExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/KeyPathApplicationExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/KeyPathDotExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/KeyPathExpr/KeyPathExpr.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/KeyPathExpr/KeyPathExpr_getComponent.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/KeyPathExpr/KeyPathExpr_getRoot.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/KeyPathExpr/KeyPathExpr_getType.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/LazyInitializationExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/MagicIdentifierLiteralExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/MakeTemporarilyEscapableExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/MemberRefExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/MethodLookupExpr/MethodLookupExpr.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/MethodLookupExpr/MethodLookupExpr_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/MethodLookupExpr/MethodLookupExpr_getType.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/NilLiteralExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/ObjectLiteralExpr/ObjectLiteralExpr.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/ObjectLiteralExpr/ObjectLiteralExpr_getArgument.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/ObjectLiteralExpr/ObjectLiteralExpr_getType.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/OneWayExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/OpaqueValueExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/OpenExistentialExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/OptionalEvaluationExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/OptionalTryExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/OtherInitializerRefExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/PostfixUnaryExpr/PostfixUnaryExpr.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/PostfixUnaryExpr/PostfixUnaryExpr_getArgument.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/PostfixUnaryExpr/PostfixUnaryExpr_getType.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/PrefixUnaryExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/PropertyWrapperValuePlaceholderExpr/PropertyWrapperValuePlaceholderExpr.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/PropertyWrapperValuePlaceholderExpr/PropertyWrapperValuePlaceholderExpr_getType.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/PropertyWrapperValuePlaceholderExpr/PropertyWrapperValuePlaceholderExpr_getWrappedValue.ql linguist-generated
|
||||
test/extractor-tests/generated/expr/RebindSelfInInitializerExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/RegexLiteralExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/StringLiteralExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/SubscriptExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/SuperRefExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/TapExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/TryExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/TupleElementExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/TupleExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/TypeExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/expr/VarargExpansionExpr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/pattern/AnyPattern/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/pattern/BindingPattern/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/pattern/BoolPattern/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/pattern/EnumElementPattern/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/pattern/ExprPattern/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/pattern/IsPattern/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/pattern/NamedPattern/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/pattern/OptionalSomePattern/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/pattern/ParenPattern/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/pattern/TuplePattern/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/pattern/TypedPattern/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/BraceStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/BreakStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/CaseLabelItem/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/CaseStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/ConditionElement/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/ContinueStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/DeferStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/DoCatchStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/DoStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/FailStmt/FailStmt.ql linguist-generated
|
||||
test/extractor-tests/generated/stmt/FallthroughStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/ForEachStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/GuardStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/IfStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/PoundAssertStmt/PoundAssertStmt.ql linguist-generated
|
||||
test/extractor-tests/generated/stmt/RepeatWhileStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/ReturnStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/StmtCondition/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/SwitchStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/ThrowStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/WhileStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/stmt/YieldStmt/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/ArraySliceType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/BoundGenericClassType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/BoundGenericEnumType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/BoundGenericStructType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/BuiltinIntegerType/BuiltinIntegerType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/BuiltinIntegerType/BuiltinIntegerType_getWidth.ql linguist-generated
|
||||
test/extractor-tests/generated/type/BuiltinType/BuiltinType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/ClassType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/DependentMemberType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/DictionaryType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/DynamicSelfType/DynamicSelfType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/EnumType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/ExistentialMetatypeType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/ExistentialType/ExistentialType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/FunctionType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/GenericFunctionType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/GenericTypeParamType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/InOutType/InOutType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/LValueType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/MetatypeType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/ModuleType/ModuleType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/OpaqueTypeArchetypeType/OpaqueTypeArchetypeType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/OpaqueTypeArchetypeType/OpaqueTypeArchetypeType_getProtocol.ql linguist-generated
|
||||
test/extractor-tests/generated/type/OpaqueTypeArchetypeType/OpaqueTypeArchetypeType_getSuperclass.ql linguist-generated
|
||||
test/extractor-tests/generated/type/OpenedArchetypeType/OpenedArchetypeType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/OpenedArchetypeType/OpenedArchetypeType_getProtocol.ql linguist-generated
|
||||
test/extractor-tests/generated/type/OpenedArchetypeType/OpenedArchetypeType_getSuperclass.ql linguist-generated
|
||||
test/extractor-tests/generated/type/OptionalType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/ParameterizedProtocolType/ParameterizedProtocolType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/ParameterizedProtocolType/ParameterizedProtocolType_getArg.ql linguist-generated
|
||||
test/extractor-tests/generated/type/ParenType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/PrimaryArchetypeType/PrimaryArchetypeType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/PrimaryArchetypeType/PrimaryArchetypeType_getProtocol.ql linguist-generated
|
||||
test/extractor-tests/generated/type/PrimaryArchetypeType/PrimaryArchetypeType_getSuperclass.ql linguist-generated
|
||||
test/extractor-tests/generated/type/ProtocolCompositionType/ProtocolCompositionType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/ProtocolCompositionType/ProtocolCompositionType_getMember.ql linguist-generated
|
||||
test/extractor-tests/generated/type/ProtocolType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/StructType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/TupleType/TupleType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/TupleType/TupleType_getName.ql linguist-generated
|
||||
test/extractor-tests/generated/type/TupleType/TupleType_getType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/TypeAliasType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/TypeRepr/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/UnboundGenericType/MISSING_SOURCE.txt linguist-generated
|
||||
test/extractor-tests/generated/type/UnmanagedStorageType/UnmanagedStorageType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/UnownedStorageType/UnownedStorageType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/VariadicSequenceType/VariadicSequenceType.ql linguist-generated
|
||||
test/extractor-tests/generated/type/WeakStorageType/WeakStorageType.ql linguist-generated
|
||||
Reference in New Issue
Block a user