@@ -184,7 +184,9 @@ public class JSObject: Equatable, ExpressibleByDictionaryLiteral {
184184 set {
185185 assertOnOwnerThread ( hint: " writing '<<JSString>>' property " )
186186 #if Tracing
187- let traceEnd = JSTracingHooks . beginJSCall ( . propertySet( receiver: self , propertyName: String ( name) , value: newValue) )
187+ let traceEnd = JSTracingHooks . beginJSCall (
188+ . propertySet( receiver: self , propertyName: String ( name) , value: newValue)
189+ )
188190 defer { traceEnd ? ( ) }
189191 #endif
190192 setJSValue ( this: self , name: name, value: newValue)
@@ -206,7 +208,9 @@ public class JSObject: Equatable, ExpressibleByDictionaryLiteral {
206208 set {
207209 assertOnOwnerThread ( hint: " writing ' \( index) ' property " )
208210 #if Tracing
209- let traceEnd = JSTracingHooks . beginJSCall ( . propertySet( receiver: self , propertyName: String ( index) , value: newValue) )
211+ let traceEnd = JSTracingHooks . beginJSCall (
212+ . propertySet( receiver: self , propertyName: String ( index) , value: newValue)
213+ )
210214 defer { traceEnd ? ( ) }
211215 #endif
212216 setJSValue ( this: self , index: Int32 ( index) , value: newValue)
@@ -228,7 +232,9 @@ public class JSObject: Equatable, ExpressibleByDictionaryLiteral {
228232 set {
229233 assertOnOwnerThread ( hint: " writing '<<JSSymbol>>' property " )
230234 #if Tracing
231- let traceEnd = JSTracingHooks . beginJSCall ( . propertySet( receiver: self , propertyName: " <<JSSymbol>> " , value: newValue) )
235+ let traceEnd = JSTracingHooks . beginJSCall (
236+ . propertySet( receiver: self , propertyName: " <<JSSymbol>> " , value: newValue)
237+ )
232238 defer { traceEnd ? ( ) }
233239 #endif
234240 setJSValue ( this: self , symbol: name, value: newValue)
0 commit comments