C++: add qldoc comment

This commit is contained in:
Robert Marsh
2020-09-24 10:40:45 -07:00
parent 094b06ec2a
commit ca06637de0

View File

@@ -182,6 +182,13 @@ class ImplicitParameterNode extends ParameterNode, TInstanceParameterNode {
override predicate isParameterOf(Function fun, int i) { f = fun and i = -1 }
}
/**
* INTERNAL: do not use.
*
* A node that represents the value of a variable after a function call that
* may have changed the variable because it's passed by reference or because an
* iterator for it was passed by value or by reference.
*/
class DefinitionByReferenceOrIteratorNode extends PartialDefinitionNode {
Expr inner;
Expr argument;
@@ -215,7 +222,6 @@ class DefinitionByReferenceOrIteratorNode extends PartialDefinitionNode {
}
}
/**
* A node that represents the value of a variable after a function call that
* may have changed the variable because it's passed by reference.