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 a0e2bd5 commit d0cb138Copy full SHA for d0cb138
1 file changed
ql/test/queries/style/ImplicitThis/Good.qll
@@ -9,8 +9,13 @@ class Foo extends string {
9
10
/* Okay because not a member predicate. */
11
string getBaz() { result = Baz::baz() }
12
+
13
+ /* Okay because not a member predicate. */
14
+ string getOuterQuux() { result = getQuux() }
15
}
16
17
+string getQuux() { result = "quux" }
18
19
module Baz {
20
string baz() { result = "baz" }
21
0 commit comments