We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52ba91a commit 1e9e57eCopy full SHA for 1e9e57e
javascript/ql/lib/semmle/javascript/dataflow/internal/VariableOrThis.qll
@@ -88,10 +88,13 @@ abstract class ThisUse instanceof ControlFlowNode {
88
/** Gets the container binding the `this` being accessed */
89
abstract StmtContainer getBindingContainer();
90
91
+ /** Get the container in which `this` is being accessed. */
92
abstract StmtContainer getUseContainer();
93
94
+ /** Gets a string representation of this element. */
95
string toString() { result = super.toString() }
96
97
+ /** Gets the location of this use of `this`. */
98
DbLocation getLocation() { result = super.getLocation() }
99
}
100
0 commit comments