Skip to content

Commit d473c71

Browse files
committed
Swift: Update schema
1 parent fd83515 commit d473c71

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

swift/schema.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1480,7 +1480,14 @@ class TypeValueExpr(Expr):
14801480
class IntegerType(Type):
14811481
value: string
14821482

1483-
class BuiltinFixedArrayType(BuiltinType):
1483+
class BuiltinGenericType(BuiltinType):
1484+
"""
1485+
A builtin generic type.
1486+
"""
1487+
pass
1488+
1489+
1490+
class BuiltinFixedArrayType(BuiltinGenericType):
14841491
"""
14851492
A builtin type representing N values stored contiguously.
14861493
"""

0 commit comments

Comments
 (0)