C++: Consistent QLDoc.

This commit is contained in:
Geoffrey White
2022-05-16 13:48:57 +01:00
parent b4a840e3ef
commit 9f3fa1c45d

View File

@@ -22,14 +22,15 @@ abstract class XmlLibrary extends string {
XmlLibrary() { any() } // required characteristic predicate
/**
* The source node for a potentially unsafe configuration object for this XML
* library, along with `flowstate` representing its initial state.
* Holds if `node` is the source node for a potentially unsafe configuration
* object for this XML library, along with `flowstate` representing its
* initial state.
*/
abstract predicate configurationSource(DataFlow::Node node, string flowstate);
/**
* The sink node where an unsafe configuration object is used to interpret
* XML.
* Holds if `node` is the sink node where an unsafe configuration object is
* used to interpret XML.
*/
abstract predicate configurationSink(DataFlow::Node node, string flowstate);
}