@@ -667,10 +667,10 @@ return non-nil."
667
667
; ; statements.
668
668
(member (swift-mode:token:text previous-token)
669
669
'(" any" " some" " inout" " borrowing" " consuming" " sending" " in"
670
- " where" " isolated " " each" ))
670
+ " where" " each" ))
671
671
(member (swift-mode:token:text next-token)
672
672
'(" any" " some" " inout" " borrowing" " consuming" " sending" " throws"
673
- " rethrows" " in" " where" " isolated " " each" ))
673
+ " rethrows" " in" " where" " each" ))
674
674
675
675
; ; Suppress implicit semicolon between throws and open parenthesis.
676
676
(and (equal (swift-mode:token:text previous-token) " throws" )
@@ -738,7 +738,7 @@ return non-nil."
738
738
" mutating" " nonmutating" " optional" " override" " postfix"
739
739
" prefix" " required" " static" " unowned" " weak" " internal"
740
740
" package" " private" " public" " open" " fileprivate" " nonisolated"
741
- " distributed" ))
741
+ " distributed" " isolated " ))
742
742
nil )
743
743
744
744
; ; internal(set) private(set) public(set) open(set) fileprivate(set)
@@ -756,7 +756,7 @@ return non-nil."
756
756
(swift-mode:backquote-identifier-if-after-dot
757
757
(swift-mode:backward-token-simple)))
758
758
'(" unowned" " internal" " private" " public" " open"
759
- " fileprivate" " nonisolated" )))))
759
+ " fileprivate" " nonisolated" " isolated " )))))
760
760
nil )
761
761
762
762
; ; Suppress implicit semicolon after declaration starters.
@@ -774,7 +774,7 @@ return non-nil."
774
774
" mutating" " nonmutating" " optional" " override" " postfix"
775
775
" prefix" " required" " static" " unowned" " weak" " internal"
776
776
" package" " private" " public" " open" " fileprivate" " nonisolated"
777
- " distributed" ))
777
+ " distributed" " isolated " ))
778
778
t )
779
779
780
780
; ; Inserts implicit semicolon around keywords that forms single keyword
0 commit comments