@@ -91,8 +91,8 @@ final class MethodImportTests {
9191 public static void helloWorld() {
9292 var mh$ = helloWorld.HANDLE;
9393 try {
94- if (TRACE_DOWNCALLS) {
95- traceDowncall();
94+ if (SwiftKit. TRACE_DOWNCALLS) {
95+ SwiftKit. traceDowncall();
9696 }
9797 mh$.invokeExact();
9898 } catch (Throwable ex$) {
@@ -134,8 +134,8 @@ final class MethodImportTests {
134134 public static void globalTakeInt(long i) {
135135 var mh$ = globalTakeInt.HANDLE;
136136 try {
137- if (TRACE_DOWNCALLS) {
138- traceDowncall(i);
137+ if (SwiftKit. TRACE_DOWNCALLS) {
138+ SwiftKit. traceDowncall(i);
139139 }
140140 mh$.invokeExact(i);
141141 } catch (Throwable ex$) {
@@ -177,8 +177,8 @@ final class MethodImportTests {
177177 public static void globalTakeIntLongString(int i32, long l, com.example.swift.String s) {
178178 var mh$ = globalTakeIntLongString.HANDLE;
179179 try {
180- if (TRACE_DOWNCALLS) {
181- traceDowncall(i32, l, s.$memorySegment());
180+ if (SwiftKit. TRACE_DOWNCALLS) {
181+ SwiftKit. traceDowncall(i32, l, s.$memorySegment());
182182 }
183183 mh$.invokeExact(i32, l, s.$memorySegment());
184184 } catch (Throwable ex$) {
@@ -220,8 +220,8 @@ final class MethodImportTests {
220220 public static void helloMemberFunction(java.lang.foreign.MemorySegment self$) {
221221 var mh$ = helloMemberFunction.HANDLE;
222222 try {
223- if (TRACE_DOWNCALLS) {
224- traceDowncall(self$);
223+ if (SwiftKit. TRACE_DOWNCALLS) {
224+ SwiftKit. traceDowncall(self$);
225225 }
226226 mh$.invokeExact(self$);
227227 } catch (Throwable ex$) {
@@ -263,8 +263,8 @@ final class MethodImportTests {
263263 public static void helloMemberInExtension(java.lang.foreign.MemorySegment self$) {
264264 var mh$ = helloMemberInExtension.HANDLE;
265265 try {
266- if (TRACE_DOWNCALLS) {
267- traceDowncall(self$);
266+ if (SwiftKit. TRACE_DOWNCALLS) {
267+ SwiftKit. traceDowncall(self$);
268268 }
269269 mh$.invokeExact(self$);
270270 } catch (Throwable ex$) {
@@ -306,8 +306,8 @@ final class MethodImportTests {
306306 public static void helloMemberFunction(java.lang.foreign.MemorySegment self$) {
307307 var mh$ = helloMemberFunction.HANDLE;
308308 try {
309- if (TRACE_DOWNCALLS) {
310- traceDowncall(self$);
309+ if (SwiftKit. TRACE_DOWNCALLS) {
310+ SwiftKit. traceDowncall(self$);
311311 }
312312 mh$.invokeExact(self$);
313313 } catch (Throwable ex$) {
@@ -431,8 +431,8 @@ final class MethodImportTests {
431431 public MySwiftClass(SwiftArena arena, long len, long cap) {
432432 var mh$ = init_len_cap.HANDLE;
433433 try {
434- if (TRACE_DOWNCALLS) {
435- traceDowncall(len, cap);
434+ if (SwiftKit. TRACE_DOWNCALLS) {
435+ SwiftKit. traceDowncall(len, cap);
436436 }
437437 this.selfMemorySegment = (MemorySegment) mh$.invokeExact(len, cap, TYPE_METADATA.$memorySegment());
438438 if (arena != null) {
0 commit comments