Files
pkurchatov 149b80a37f Sendable DivData
commit_hash:ae183ed8d06f2c89c8693f59bedba49752638377
2025-01-16 16:25:07 +03:00

30 lines
666 B
Swift

// Generated code. Do not modify.
import CommonCore
import Foundation
import Serialization
public final class EntityWithRawArray: @unchecked Sendable {
public static let type: String = "entity_with_raw_array"
public let array: Expression<[Any]>
public func resolveArray(_ resolver: ExpressionResolver) -> [Any]? {
resolver.resolveArray(array)
}
init(
array: Expression<[Any]>
) {
self.array = array
}
}
#if DEBUG
// WARNING: this == is incomplete because of [Any] in class fields
extension EntityWithRawArray: Equatable {
public static func ==(lhs: EntityWithRawArray, rhs: EntityWithRawArray) -> Bool {
return true
}
}
#endif