Skip to content

Commit 7d15d31

Browse files
committed
dsds
1 parent 5717f41 commit 7d15d31

File tree

3 files changed

+2
-31
lines changed

3 files changed

+2
-31
lines changed

Plugins/BridgeJS/Sources/BridgeJSSkeleton/BridgeJSSkeleton.swift

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ public enum WasmCoreType: String, Codable {
1414
case i32, i64, f32, f64, pointer
1515
}
1616

17-
/// Represents supported Swift enum raw types with their WASM ABI properties
1817
public enum SwiftEnumRawType: String, CaseIterable, Codable {
1918
case string = "String"
2019
case bool = "Bool"
@@ -30,7 +29,7 @@ public enum SwiftEnumRawType: String, CaseIterable, Codable {
3029
public var wasmCoreType: WasmCoreType? {
3130
switch self {
3231
case .string:
33-
return nil // String has special handling with UTF-8 bytes and length
32+
return nil
3433
case .bool, .int, .int32, .uint, .uint32:
3534
return .i32
3635
case .int64, .uint64:

Plugins/BridgeJS/Sources/TS2Skeleton/JavaScript/package-lock.json

Lines changed: 0 additions & 28 deletions
This file was deleted.

Plugins/BridgeJS/Sources/TS2Skeleton/JavaScript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "module",
33
"dependencies": {
4-
"typescript": "^5.8.2"
4+
"typescript": "5.8.2"
55
},
66
"bin": {
77
"ts2skeleton": "./bin/ts2skeleton.js"

0 commit comments

Comments
 (0)