Skip to content

Commit cb45962

Browse files
./Utilities/format.swift
1 parent f6959e0 commit cb45962

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Plugins/BridgeJS/Sources/BridgeJSLink/JSGlueGen.swift

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2291,7 +2291,10 @@ struct IntrinsicJSFragment: Sendable {
22912291
let fragment = IntrinsicJSFragment.associatedValuePushPayload(enumCase: enumCase)
22922292
_ = try fragment.printCode(
22932293
["value", enumName, caseName],
2294-
context.with(\.scope, caseScope).with(\.printer, lowerPrinter).with(\.cleanupCode, caseCleanup)
2294+
context.with(\.scope, caseScope).with(\.printer, lowerPrinter).with(
2295+
\.cleanupCode,
2296+
caseCleanup
2297+
)
22952298
)
22962299
}
22972300

@@ -2322,7 +2325,10 @@ struct IntrinsicJSFragment: Sendable {
23222325
let fragment = IntrinsicJSFragment.associatedValuePopPayload(enumCase: enumCase)
23232326
_ = try fragment.printCode(
23242327
[enumName, caseName],
2325-
context.with(\.scope, caseScope).with(\.printer, liftPrinter).with(\.cleanupCode, caseCleanup)
2328+
context.with(\.scope, caseScope).with(\.printer, liftPrinter).with(
2329+
\.cleanupCode,
2330+
caseCleanup
2331+
)
23262332
)
23272333
}
23282334

0 commit comments

Comments
 (0)