@@ -16,42 +16,127 @@ import SwiftSyntax
16
16
17
17
extension AccessorBlockSyntax : SyntaxExpressibleByStringInterpolation { }
18
18
19
+ #if compiler(>=6)
20
+ extension AccessorBlockSyntax : @retroactive ExpressibleByStringInterpolation { }
21
+ #endif
22
+
19
23
extension AccessorDeclSyntax : SyntaxExpressibleByStringInterpolation { }
20
24
25
+ #if compiler(>=6)
26
+ extension AccessorDeclSyntax : @retroactive ExpressibleByStringInterpolation { }
27
+ #endif
28
+
21
29
extension AttributeSyntax : SyntaxExpressibleByStringInterpolation { }
22
30
31
+ #if compiler(>=6)
32
+ extension AttributeSyntax : @retroactive ExpressibleByStringInterpolation { }
33
+ #endif
34
+
23
35
extension CatchClauseSyntax : SyntaxExpressibleByStringInterpolation { }
24
36
37
+ #if compiler(>=6)
38
+ extension CatchClauseSyntax : @retroactive ExpressibleByStringInterpolation { }
39
+ #endif
40
+
25
41
extension ClosureParameterSyntax : SyntaxExpressibleByStringInterpolation { }
26
42
43
+ #if compiler(>=6)
44
+ extension ClosureParameterSyntax : @retroactive ExpressibleByStringInterpolation { }
45
+ #endif
46
+
27
47
extension CodeBlockItemSyntax : SyntaxExpressibleByStringInterpolation { }
28
48
49
+ #if compiler(>=6)
50
+ extension CodeBlockItemSyntax : @retroactive ExpressibleByStringInterpolation { }
51
+ #endif
52
+
29
53
extension DeclSyntax : SyntaxExpressibleByStringInterpolation { }
30
54
55
+ #if compiler(>=6)
56
+ extension DeclSyntax : @retroactive ExpressibleByStringInterpolation { }
57
+ #endif
58
+
31
59
extension EnumCaseParameterSyntax : SyntaxExpressibleByStringInterpolation { }
32
60
61
+ #if compiler(>=6)
62
+ extension EnumCaseParameterSyntax : @retroactive ExpressibleByStringInterpolation { }
63
+ #endif
64
+
33
65
extension ExprSyntax : SyntaxExpressibleByStringInterpolation { }
34
66
67
+ #if compiler(>=6)
68
+ extension ExprSyntax : @retroactive ExpressibleByStringInterpolation { }
69
+ #endif
70
+
35
71
extension FunctionParameterSyntax : SyntaxExpressibleByStringInterpolation { }
36
72
73
+ #if compiler(>=6)
74
+ extension FunctionParameterSyntax : @retroactive ExpressibleByStringInterpolation { }
75
+ #endif
76
+
37
77
extension GenericParameterClauseSyntax : SyntaxExpressibleByStringInterpolation { }
38
78
79
+ #if compiler(>=6)
80
+ extension GenericParameterClauseSyntax : @retroactive ExpressibleByStringInterpolation { }
81
+ #endif
82
+
39
83
extension MemberBlockSyntax : SyntaxExpressibleByStringInterpolation { }
40
84
85
+ #if compiler(>=6)
86
+ extension MemberBlockSyntax : @retroactive ExpressibleByStringInterpolation { }
87
+ #endif
88
+
41
89
extension PatternSyntax : SyntaxExpressibleByStringInterpolation { }
42
90
91
+ #if compiler(>=6)
92
+ extension PatternSyntax : @retroactive ExpressibleByStringInterpolation { }
93
+ #endif
94
+
43
95
extension SourceFileSyntax : SyntaxExpressibleByStringInterpolation { }
44
96
97
+ #if compiler(>=6)
98
+ extension SourceFileSyntax : @retroactive ExpressibleByStringInterpolation { }
99
+ #endif
100
+
45
101
extension StmtSyntax : SyntaxExpressibleByStringInterpolation { }
46
102
103
+ #if compiler(>=6)
104
+ extension StmtSyntax : @retroactive ExpressibleByStringInterpolation { }
105
+ #endif
106
+
47
107
extension SwitchCaseSyntax : SyntaxExpressibleByStringInterpolation { }
48
108
109
+ #if compiler(>=6)
110
+ extension SwitchCaseSyntax : @retroactive ExpressibleByStringInterpolation { }
111
+ #endif
112
+
49
113
extension TypeSyntax : SyntaxExpressibleByStringInterpolation { }
50
114
115
+ #if compiler(>=6)
116
+ extension TypeSyntax : @retroactive ExpressibleByStringInterpolation { }
117
+ #endif
118
+
51
119
extension AccessorDeclListSyntax : SyntaxExpressibleByStringInterpolation { }
52
120
121
+ #if compiler(>=6)
122
+ extension AccessorDeclListSyntax : @retroactive ExpressibleByStringInterpolation { }
123
+ #endif
124
+
53
125
extension AttributeListSyntax : SyntaxExpressibleByStringInterpolation { }
54
126
127
+ #if compiler(>=6)
128
+ extension AttributeListSyntax : @retroactive ExpressibleByStringInterpolation { }
129
+ #endif
130
+
55
131
extension CodeBlockItemListSyntax : SyntaxExpressibleByStringInterpolation { }
56
132
133
+ #if compiler(>=6)
134
+ extension CodeBlockItemListSyntax : @retroactive ExpressibleByStringInterpolation { }
135
+ #endif
136
+
57
137
extension MemberBlockItemListSyntax : SyntaxExpressibleByStringInterpolation { }
138
+
139
+ #if compiler(>=6)
140
+ extension MemberBlockItemListSyntax : @retroactive ExpressibleByStringInterpolation { }
141
+ #endif
142
+
0 commit comments