Swift: Handle InlineArrayTypes

This commit is contained in:
Jeroen Ketema
2025-10-31 10:15:07 +01:00
parent 72e8ec3951
commit f4d1e1c034
19 changed files with 220 additions and 7 deletions

View File

@@ -1192,6 +1192,10 @@ class BuiltinIntegerLiteralType(AnyBuiltinIntegerType):
class BuiltinIntegerType(AnyBuiltinIntegerType):
width: optional[int]
class InlineArrayType(SyntaxSugarType):
count_type: Type
element_type: Type
class DictionaryType(SyntaxSugarType):
key_type: Type
value_type: Type