mirror of
https://github.com/github/codeql.git
synced 2026-01-06 03:00:24 +01:00
11 lines
284 B
Plaintext
11 lines
284 B
Plaintext
import javascript
|
|
import ExampleConfiguration
|
|
|
|
query predicate isBarrier(ExampleConfiguration cfg, DataFlow::Node n) { cfg.isBarrier(n) }
|
|
|
|
query predicate isLabeledBarrier(
|
|
ExampleConfiguration cfg, DataFlow::Node n, DataFlow::FlowLabel label
|
|
) {
|
|
cfg.isLabeledBarrier(n, label)
|
|
}
|