From d473c7143d3b83351ee5027320fb831daeceb021 Mon Sep 17 00:00:00 2001 From: Jeroen Ketema Date: Wed, 8 Apr 2026 13:20:06 +0200 Subject: [PATCH] Swift: Update schema --- swift/schema.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/swift/schema.py b/swift/schema.py index e7b45fb81a5..9302cb14b57 100644 --- a/swift/schema.py +++ b/swift/schema.py @@ -1480,7 +1480,14 @@ class TypeValueExpr(Expr): class IntegerType(Type): value: string -class BuiltinFixedArrayType(BuiltinType): +class BuiltinGenericType(BuiltinType): + """ + A builtin generic type. + """ + pass + + +class BuiltinFixedArrayType(BuiltinGenericType): """ A builtin type representing N values stored contiguously. """