Skip to content

Commit e323833

Browse files
committed
JS: Fix qldoc coverage
1 parent 07f84a5 commit e323833

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

javascript/ql/lib/semmle/javascript/internal/NameResolution.qll

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ module NameResolution {
1717
* A node in a graph which we use to perform name and type resolution.
1818
*/
1919
class Node extends NodeBase {
20+
/** Gets a string representation of this node. */
2021
string toString() {
2122
result = this.(AstNode).toString()
2223
or
@@ -25,6 +26,7 @@ module NameResolution {
2526
result = this.(JSDocTypeExpr).toString()
2627
}
2728

29+
/** Gets the location of this node. */
2830
Location getLocation() {
2931
result = this.(AstNode).getLocation()
3032
or

0 commit comments

Comments
 (0)