mirror of
https://github.com/github/codeql.git
synced 2026-02-10 04:01:11 +01:00
11 lines
282 B
Plaintext
11 lines
282 B
Plaintext
import java
|
|
import TestUtilities.InlineFlowTest
|
|
|
|
class EnableLegacy extends EnableLegacyConfiguration {
|
|
EnableLegacy() { exists(this) }
|
|
}
|
|
|
|
class FlowConf extends DefaultValueFlowConf {
|
|
override predicate isSink(DataFlow::Node n) { super.isSink(n) or sinkNode(n, "open-url") }
|
|
}
|