mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
149b80a37f
commit_hash:ae183ed8d06f2c89c8693f59bedba49752638377
30 lines
666 B
Swift
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
|