Skip to content

Commit fbe51c5

Browse files
committed
Python: Add missing QLDoc
1 parent ed0e4f8 commit fbe51c5

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

python/ql/src/semmle/python/security/dataflow/ChainedConfigs12.qll

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,13 @@ class CustomPathNode extends TCustomPathNode {
4141
this = Config2Node(result) or this = CrossoverNode(result.getNode())
4242
}
4343

44+
/**
45+
* Holds if this element is at the specified location.
46+
* The location spans column `startcolumn` of line `startline` to
47+
* column `endcolumn` of line `endline` in file `filepath`.
48+
* For more information, see
49+
* [Locations](https://help.semmle.com/QL/learn-ql/ql/locations.html).
50+
*/
4451
predicate hasLocationInfo(
4552
string filepath, int startline, int startcolumn, int endline, int endcolumn
4653
) {
@@ -49,6 +56,7 @@ class CustomPathNode extends TCustomPathNode {
4956
asNode2().hasLocationInfo(filepath, startline, startcolumn, endline, endcolumn)
5057
}
5158

59+
/** Gets a textual representation of this element. */
5260
string toString() {
5361
result = asNode1().toString()
5462
or

0 commit comments

Comments
 (0)