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 07f84a5 commit e323833Copy full SHA for e323833
javascript/ql/lib/semmle/javascript/internal/NameResolution.qll
@@ -17,6 +17,7 @@ module NameResolution {
17
* A node in a graph which we use to perform name and type resolution.
18
*/
19
class Node extends NodeBase {
20
+ /** Gets a string representation of this node. */
21
string toString() {
22
result = this.(AstNode).toString()
23
or
@@ -25,6 +26,7 @@ module NameResolution {
25
26
result = this.(JSDocTypeExpr).toString()
27
}
28
29
+ /** Gets the location of this node. */
30
Location getLocation() {
31
result = this.(AstNode).getLocation()
32
0 commit comments