Skip to content

Commit 80cda35

Browse files
authored
Apply formatter suggestions
1 parent b10764a commit 80cda35

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Plugins/BridgeJS/Sources/BridgeJSLink/BridgeJSLink.swift

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2163,7 +2163,11 @@ extension BridgeJSLink {
21632163
returnExpr = resultVariable
21642164
}
21652165

2166-
return try lowerReturnValue(returnType: returnType, returnExpr: returnExpr, loweringFragment: loweringFragment)
2166+
return try lowerReturnValue(
2167+
returnType: returnType,
2168+
returnExpr: returnExpr,
2169+
loweringFragment: loweringFragment
2170+
)
21672171
}
21682172

21692173
private func lowerReturnValue(
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@JSClass
22
struct JSConsole {
3-
@JSFunction func log(_ message: String) throws (JSException)
3+
@JSFunction func log(_ message: String) throws(JSException)
44
}
55

66
@JSGetter var console: JSConsole

0 commit comments

Comments
 (0)