diff --git a/src/basic-languages/swift/swift.ts b/src/basic-languages/swift/swift.ts index 92c206b4..4a4e7a10 100644 --- a/src/basic-languages/swift/swift.ts +++ b/src/basic-languages/swift/swift.ts @@ -38,7 +38,7 @@ export const language = { // TODO(owensd): Support the full range of unicode valid identifiers. identifier: /[a-zA-Z_][\w$]*/, - + attributes: [ '@GKInspectable', '@IBAction', @@ -51,7 +51,7 @@ export const language = { '@NSManaged', '@Sendable', '@UIApplicationMain', - + '@autoclosure', '@actorIndependent', '@asyncHandler', @@ -79,7 +79,7 @@ export const language = { '@unchecked', '@unknown', '@usableFromInline', - '@warn_unqualified_access', + '@warn_unqualified_access' ], accessmodifiers: ['open', 'public', 'internal', 'fileprivate', 'private'], keywords: [ @@ -103,12 +103,12 @@ export const language = { '#selector', '#sourceLocation', '#warning', - + 'Any', 'Protocol', 'Self', 'Type', - + 'actor', 'as', 'assignment', @@ -197,7 +197,7 @@ export const language = { 'where', 'while', 'willSet', - + '__consuming', '__owned' ],