mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
22 lines
638 B
Plaintext
22 lines
638 B
Plaintext
import javascript
|
|
|
|
query StringOps::Concatenation concatenation() { any() }
|
|
|
|
query StringOps::ConcatenationOperand concatenationOperand() { any() }
|
|
|
|
query StringOps::ConcatenationLeaf concatenationLeaf() { any() }
|
|
|
|
query StringOps::ConcatenationNode concatenationNode() { any() }
|
|
|
|
query predicate operand(StringOps::ConcatenationNode node, int i, DataFlow::Node child) {
|
|
child = node.getOperand(i)
|
|
}
|
|
|
|
query predicate nextLeaf(StringOps::ConcatenationNode node, DataFlow::Node next) {
|
|
next = node.getNextLeaf()
|
|
}
|
|
|
|
query StringOps::HtmlConcatenationRoot htmlRoot() { any() }
|
|
|
|
query StringOps::HtmlConcatenationLeaf htmlLeaf() { any() }
|