Skip to content

Commit bb93fac

Browse files
authored
Swift: Added support for new Swift 5.5 keywords (#2988)
1 parent ea77675 commit bb93fac

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

components/prism-swift.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Prism.languages.swift = Prism.languages.extend('clike', {
1616
}
1717
}
1818
},
19-
'keyword': /\b(?:as|associativity|break|case|catch|class|continue|convenience|default|defer|deinit|didSet|do|dynamic(?:Type)?|else|enum|extension|fallthrough|final|for|func|get|guard|if|import|in|infix|init|inout|internal|is|lazy|left|let|mutating|new|none|nonmutating|operator|optional|override|postfix|precedence|prefix|private|protocol|public|repeat|required|rethrows|return|right|safe|self|Self|set|some|static|struct|subscript|super|switch|throws?|try|Type|typealias|unowned|unsafe|var|weak|where|while|willSet|__(?:COLUMN__|FILE__|FUNCTION__|LINE__))\b/,
19+
'keyword': /\b(?:actor|as|associativity|async|await|break|case|catch|class|continue|convenience|default|defer|deinit|didSet|do|dynamic(?:Type)?|else|enum|extension|fallthrough|final|for|func|get|guard|if|import|in|infix|init|inout|internal|is|lazy|left|let|mutating|new|none|nonisolated|nonmutating|operator|optional|override|postfix|precedence|prefix|private|protocol|public|repeat|required|rethrows|return|right|safe|self|Self|set|some|static|struct|subscript|super|switch|throws?|try|Type|typealias|unowned|unsafe|var|weak|where|while|willSet|__(?:COLUMN__|FILE__|FUNCTION__|LINE__))\b/,
2020
'number': /\b(?:[\d_]+(?:\.[\de_]+)?|0x[a-f0-9_]+(?:\.[a-f0-9p_]+)?|0b[01_]+|0o[0-7_]+)\b/i,
2121
'constant': /\b(?:nil|[A-Z_]{2,}|k[A-Z][A-Za-z_]+)\b/,
2222
'atrule': /@\b(?:IB(?:Outlet|Designable|Action|Inspectable)|class_protocol|exported|noreturn|NS(?:Copying|Managed)|objc|UIApplicationMain|auto_closure)\b/,

components/prism-swift.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/languages/swift/keyword_feature.test

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
actor
12
as
23
associativity
4+
async
5+
await
36
break
47
case
58
catch
@@ -36,6 +39,7 @@ let
3639
mutating
3740
new;
3841
none
42+
nonisolated
3943
nonmutating
4044
operator
4145
optional
@@ -81,8 +85,11 @@ __LINE__
8185
----------------------------------------------------
8286

8387
[
88+
["keyword", "actor"],
8489
["keyword", "as"],
8590
["keyword", "associativity"],
91+
["keyword", "async"],
92+
["keyword", "await"],
8693
["keyword", "break"],
8794
["keyword", "case"],
8895
["keyword", "catch"],
@@ -119,6 +126,7 @@ __LINE__
119126
["keyword", "mutating"],
120127
["keyword", "new"], ["punctuation", ";"],
121128
["keyword", "none"],
129+
["keyword", "nonisolated"],
122130
["keyword", "nonmutating"],
123131
["keyword", "operator"],
124132
["keyword", "optional"],

0 commit comments

Comments
 (0)