Skip to content

Commit 66a6c52

Browse files
./Utilities/format.swift
1 parent 2e71e20 commit 66a6c52

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Plugins/BridgeJS/Sources/BridgeJSCore/ExportSwift.swift

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -245,9 +245,11 @@ class ExportSwift {
245245
let collector = APICollector(parent: self)
246246
collector.walk(sourceFile)
247247
exportedFunctions.append(contentsOf: collector.exportedFunctions)
248-
exportedClasses.append(contentsOf: collector.exportedClassNames.map {
249-
collector.exportedClassByName[$0]!
250-
})
248+
exportedClasses.append(
249+
contentsOf: collector.exportedClassNames.map {
250+
collector.exportedClassByName[$0]!
251+
}
252+
)
251253
return collector.errors
252254
}
253255

0 commit comments

Comments
 (0)