Skip to content

Commit e981a28

Browse files
committed
Swift: autoformat test.
1 parent 0b3408b commit e981a28

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

swift/ql/test/library-tests/elements/decl/abstractfunctiondecl/abstractfunctiondecl.ql

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@ import swift
22

33
string describe(AbstractFunctionDecl f) {
44
result = "getName:" + f.getName()
5-
or exists(string a |
5+
or
6+
exists(string a |
67
f.hasName(a) and
78
result = "hasName:" + a
89
)
910
or
10-
(
11-
result = "MethodDecl" and f instanceof MethodDecl
12-
)
11+
result = "MethodDecl" and f instanceof MethodDecl
1312
or
1413
exists(string a, string b |
1514
f.(MethodDecl).hasQualifiedName(a, b) and

0 commit comments

Comments
 (0)