JS: Fix missing qldoc

This commit is contained in:
Asger F
2024-10-28 11:11:51 +01:00
parent 52ba91a7f8
commit 1e9e57e46e

View File

@@ -88,10 +88,13 @@ abstract class ThisUse instanceof ControlFlowNode {
/** Gets the container binding the `this` being accessed */
abstract StmtContainer getBindingContainer();
/** Get the container in which `this` is being accessed. */
abstract StmtContainer getUseContainer();
/** Gets a string representation of this element. */
string toString() { result = super.toString() }
/** Gets the location of this use of `this`. */
DbLocation getLocation() { result = super.getLocation() }
}