Add documentation to main classes' functions.

Co-authored-by: Rasmus Wriedt Larsen <rasmuswriedtlarsen@gmail.com>
This commit is contained in:
Jorge
2021-05-07 21:51:10 +02:00
committed by GitHub
parent 1c34230efb
commit c2b96b3a5e

View File

@@ -41,6 +41,9 @@ class LDAPQuery extends DataFlow::Node {
LDAPQuery() { this = range }
/**
* Gets the argument containing the executed expression.
*/
DataFlow::Node getLDAPNode() { result = range.getLDAPNode() }
}
@@ -71,5 +74,8 @@ class LDAPEscape extends DataFlow::Node {
LDAPEscape() { this = range }
/**
* Gets the argument containing the escaped expression.
*/
DataFlow::Node getEscapeNode() { result = range.getEscapeNode() }
}