Python: add missing qldoc

More doc is needed, but this should turn the tests green
This commit is contained in:
Rasmus Lerchedahl Petersen
2024-09-30 15:43:19 +02:00
parent a22ea6c1c8
commit 438e664116

View File

@@ -129,9 +129,11 @@ newtype TNode =
f = any(VariableCapture::CapturedVariable v).getACapturingScope() and
exists(TFunction(f))
} or
/** A synthetic node representing the values of variables captured by a comprehension. */
TSynthCompCapturedVariablesArgumentNode(Comp comp) {
comp.getFunction() = any(VariableCapture::CapturedVariable v).getACapturingScope()
} or
/** A synthetic node representing the values of variables captured by a comprehension after the output has been computed. */
TSynthCompCapturedVariablesArgumentPostUpdateNode(Comp comp) {
comp.getFunction() = any(VariableCapture::CapturedVariable v).getACapturingScope()
} or