We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34f02ee commit d3f683eCopy full SHA for d3f683e
ql/src/queries/analysis/Definitions.ql
@@ -85,8 +85,8 @@ newtype DefLoc =
85
*/
86
string constantQualifiedName(ConstantWriteAccess w) {
87
/* get the qualified name for the parent module, then append w */
88
- exists(ConstantWriteAccess parent |
89
- parent = w.getEnclosingModule() and result = constantQualifiedName(parent) + "::" + w.getName()
+ exists(ConstantWriteAccess parent | parent = w.getEnclosingModule() |
+ result = constantQualifiedName(parent) + "::" + w.getName()
90
)
91
or
92
/* base case - there's no parent module */
0 commit comments