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. """