mirror of
https://github.com/github/codeql.git
synced 2026-04-18 21:44:02 +02: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)
|
|
}
|