Skip to content

Commit 466cf75

Browse files
committed
Autoformat
1 parent b4124ac commit 466cf75

File tree

1 file changed

+9
-7
lines changed
  • java/ql/test/kotlin/library-tests/jvmstatic-annotation

1 file changed

+9
-7
lines changed
Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
import java
22

33
query predicate staticMembers(RefType declType, Member m, string kind) {
4-
5-
m.fromSource() and m.isStatic() and m.getDeclaringType() = declType and kind = m.getAPrimaryQlClass()
6-
4+
m.fromSource() and
5+
m.isStatic() and
6+
m.getDeclaringType() = declType and
7+
kind = m.getAPrimaryQlClass()
78
}
89

910
from Call call, Callable callable, RefType declType, Expr qualifier, string callType
10-
where call.getCallee() = callable and
11-
declType = callable.getDeclaringType() and
12-
qualifier = call.getQualifier() and
13-
if callable.isStatic() then callType = "static" else callType = "instance"
11+
where
12+
call.getCallee() = callable and
13+
declType = callable.getDeclaringType() and
14+
qualifier = call.getQualifier() and
15+
if callable.isStatic() then callType = "static" else callType = "instance"
1416
select declType, call, qualifier, callType

0 commit comments

Comments
 (0)