Skip to content

Commit d3f683e

Browse files
committed
Minor refactor of constantQualifiedName
1 parent 34f02ee commit d3f683e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ql/src/queries/analysis/Definitions.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ newtype DefLoc =
8585
*/
8686
string constantQualifiedName(ConstantWriteAccess w) {
8787
/* 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()
88+
exists(ConstantWriteAccess parent | parent = w.getEnclosingModule() |
89+
result = constantQualifiedName(parent) + "::" + w.getName()
9090
)
9191
or
9292
/* base case - there's no parent module */

0 commit comments

Comments
 (0)