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 2e71e20 commit 66a6c52Copy full SHA for 66a6c52
Plugins/BridgeJS/Sources/BridgeJSCore/ExportSwift.swift
@@ -245,9 +245,11 @@ class ExportSwift {
245
let collector = APICollector(parent: self)
246
collector.walk(sourceFile)
247
exportedFunctions.append(contentsOf: collector.exportedFunctions)
248
- exportedClasses.append(contentsOf: collector.exportedClassNames.map {
249
- collector.exportedClassByName[$0]!
250
- })
+ exportedClasses.append(
+ contentsOf: collector.exportedClassNames.map {
+ collector.exportedClassByName[$0]!
251
+ }
252
+ )
253
return collector.errors
254
}
255
0 commit comments