2022-08-30 11:18:31 +03:00
|
|
|
# CodeQL Shared Libraries
|
|
|
|
|
|
|
|
This folder contains shared, language-agnostic CodeQL libraries.
|
|
|
|
|
2022-09-01 20:34:18 +03:00
|
|
|
Libraries are organized into separate query packs, in order to allow for
|
|
|
|
individual versioning. For example, the shared static single assignment (SSA)
|
2022-09-05 12:17:30 +03:00
|
|
|
library exists in the `codeql/ssa` pack, which can be referenced by adding
|
2022-08-30 11:18:31 +03:00
|
|
|
|
|
|
|
```
|
|
|
|
dependencies:
|
2022-09-05 12:17:30 +03:00
|
|
|
codeql/ssa: 0.0.1
|
2022-08-30 11:18:31 +03:00
|
|
|
```
|
|
|
|
|
2022-09-01 20:34:18 +03:00
|
|
|
to `qlpack.yml`.
|
|
|
|
|
2022-09-05 12:17:30 +03:00
|
|
|
All shared libraries will belong to a `codeql/<name>` pack, and live in the
|
|
|
|
namespace `codeql.<name>`.
|