@@ -77,12 +77,12 @@ final class InlayHintTests: XCTestCase {
77
77
InlayHint (
78
78
position: Position ( line: 0 , utf16index: 5 ) ,
79
79
kind: . type,
80
- label: " Int "
80
+ label: " : Int"
81
81
) ,
82
82
InlayHint (
83
83
position: Position ( line: 1 , utf16index: 5 ) ,
84
84
kind: . type,
85
- label: " String "
85
+ label: " : String"
86
86
) ,
87
87
] )
88
88
}
@@ -106,12 +106,12 @@ final class InlayHintTests: XCTestCase {
106
106
InlayHint (
107
107
position: Position ( line: 6 , utf16index: 10 ) ,
108
108
kind: . type,
109
- label: " Bool "
109
+ label: " : Bool"
110
110
) ,
111
111
InlayHint (
112
112
position: Position ( line: 7 , utf16index: 12 ) ,
113
113
kind: . type,
114
- label: " Int "
114
+ label: " : Int"
115
115
)
116
116
] )
117
117
}
@@ -137,27 +137,27 @@ final class InlayHintTests: XCTestCase {
137
137
InlayHint (
138
138
position: Position ( line: 1 , utf16index: 20 ) ,
139
139
kind: . type,
140
- label: " Int "
140
+ label: " : Int"
141
141
) ,
142
142
InlayHint (
143
143
position: Position ( line: 2 , utf16index: 25 ) ,
144
144
kind: . type,
145
- label: " String "
145
+ label: " : String"
146
146
) ,
147
147
InlayHint (
148
148
position: Position ( line: 6 , utf16index: 20 ) ,
149
149
kind: . type,
150
- label: " String "
150
+ label: " : String"
151
151
) ,
152
152
InlayHint (
153
153
position: Position ( line: 7 , utf16index: 25 ) ,
154
154
kind: . type,
155
- label: " Int "
155
+ label: " : Int"
156
156
) ,
157
157
InlayHint (
158
158
position: Position ( line: 11 , utf16index: 25 ) ,
159
159
kind: . type,
160
- label: " Double "
160
+ label: " : Double"
161
161
) ,
162
162
] )
163
163
}
@@ -189,22 +189,22 @@ final class InlayHintTests: XCTestCase {
189
189
InlayHint (
190
190
position: Position ( line: 2 , utf16index: 5 ) ,
191
191
kind: . type,
192
- label: " (Int) -> () "
192
+ label: " : (Int) -> ()"
193
193
) ,
194
194
InlayHint (
195
195
position: Position ( line: 3 , utf16index: 31 ) ,
196
196
kind: . type,
197
- label: " String "
197
+ label: " : String"
198
198
) ,
199
199
InlayHint (
200
200
position: Position ( line: 4 , utf16index: 40 ) ,
201
201
kind: . type,
202
- label: " Double "
202
+ label: " : Double"
203
203
) ,
204
204
InlayHint (
205
205
position: Position ( line: 4 , utf16index: 43 ) ,
206
206
kind: . type,
207
- label: " Double "
207
+ label: " : Double"
208
208
)
209
209
] )
210
210
}
0 commit comments