mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +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") }
|
|
}
|