Skip to content

Commit 2465f84

Browse files
committed
Run swiftformat
1 parent b3574a0 commit 2465f84

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

IntegrationTests/TestSuites/Sources/BenchmarkTests/main.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ serialization.testSuite("Swift String to JavaScript") {
2020
}
2121
}
2222

23-
2423
let objectHeap = Benchmark("Object heap")
2524

2625
let global = JSObjectRef.global

Sources/JavaScriptKit/JSFunction.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public class JSFunctionRef: JSObjectRef {
3030
}
3131

3232
public func new(_ args: JSValueConvertible...) -> JSObjectRef {
33-
self.new(args: args)
33+
new(args: args)
3434
}
3535

3636
// Guaranteed to return an object because either:

Sources/JavaScriptKit/XcodeSupport.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ import _CJavaScriptKit
6666
) { fatalError() }
6767
func _instanceof(
6868
_: JavaScriptObjectRef,
69-
_: JavaScriptObjectRef
69+
_: JavaScriptObjectRef
7070
) -> Bool { fatalError() }
7171
func _create_function(
7272
_: JavaScriptHostFuncRef,

0 commit comments

Comments
 (0)