@@ -103,7 +103,7 @@ struct CodelinkLegacyDocC:ParsingSuite
103
103
104
104
#expect( link. path. components == [ " Sloth " , " update(_:) " ] )
105
105
#expect( link. path. hasTrailingParentheses)
106
- #expect( link. suffix == . pattern( . inputs( [ " _ " ] ) ) )
106
+ #expect( link. suffix == . pattern( . inputs( [ nil ] ) ) )
107
107
}
108
108
109
109
@Test
@@ -123,7 +123,7 @@ struct CodelinkLegacyDocC:ParsingSuite
123
123
124
124
#expect( link. path. components == [ " Sloth " , " update(_:) " ] )
125
125
#expect( link. path. hasTrailingParentheses)
126
- #expect( link. suffix == . pattern( . inputs( [ " _ " , " String " , " _ " ] ) ) )
126
+ #expect( link. suffix == . pattern( . inputs( [ nil , " String " , nil ] ) ) )
127
127
}
128
128
129
129
@Test
@@ -133,7 +133,7 @@ struct CodelinkLegacyDocC:ParsingSuite
133
133
134
134
#expect( link. path. components == [ " Sloth " , " update(_:) " ] )
135
135
#expect( link. path. hasTrailingParentheses)
136
- #expect( link. suffix == . pattern( . output( . tuple( [ " _ " , " _ " ] ) ) ) )
136
+ #expect( link. suffix == . pattern( . output( . tuple( [ nil , nil ] ) ) ) )
137
137
}
138
138
139
139
@Test
@@ -143,7 +143,7 @@ struct CodelinkLegacyDocC:ParsingSuite
143
143
144
144
#expect( link. path. components == [ " Sloth " , " update(_:) " ] )
145
145
#expect( link. path. hasTrailingParentheses)
146
- #expect( link. suffix == . pattern( . output( . tuple( [ " Double " , " _ " ] ) ) ) )
146
+ #expect( link. suffix == . pattern( . output( . tuple( [ " Double " , nil ] ) ) ) )
147
147
}
148
148
149
149
@Test
@@ -163,7 +163,7 @@ struct CodelinkLegacyDocC:ParsingSuite
163
163
164
164
#expect( link. path. components == [ " Sloth " , " update(_:) " ] )
165
165
#expect( link. path. hasTrailingParentheses)
166
- #expect( link. suffix == . pattern( . output( . tuple( [ " _ " , " Int " ] ) ) ) )
166
+ #expect( link. suffix == . pattern( . output( . tuple( [ nil , " Int " ] ) ) ) )
167
167
}
168
168
169
169
@Test
@@ -193,7 +193,7 @@ struct CodelinkLegacyDocC:ParsingSuite
193
193
194
194
#expect( link. path. components == [ " Sloth " , " update(_:) " ] )
195
195
#expect( link. path. hasTrailingParentheses)
196
- #expect( link. suffix == . pattern( . output( . single( " _ " ) ) ) )
196
+ #expect( link. suffix == . pattern( . output( . single( nil ) ) ) )
197
197
}
198
198
199
199
@Test
@@ -203,7 +203,7 @@ struct CodelinkLegacyDocC:ParsingSuite
203
203
204
204
#expect( link. path. components == [ " Sloth " , " update(_:) " ] )
205
205
#expect( link. path. hasTrailingParentheses)
206
- #expect( link. suffix == . pattern( . output( . single( " _ " ) ) ) )
206
+ #expect( link. suffix == . pattern( . output( . single( nil ) ) ) )
207
207
}
208
208
209
209
@Test
@@ -223,7 +223,7 @@ struct CodelinkLegacyDocC:ParsingSuite
223
223
224
224
#expect( link. path. components == [ " Sloth " , " update(_:) " ] )
225
225
#expect( link. path. hasTrailingParentheses)
226
- #expect( link. suffix == . pattern( . fullSignature( [ " _ " , " Int " ] , . single( " _ " ) ) ) )
226
+ #expect( link. suffix == . pattern( . fullSignature( [ nil , " Int " ] , . single( nil ) ) ) )
227
227
}
228
228
229
229
@Test
@@ -233,6 +233,6 @@ struct CodelinkLegacyDocC:ParsingSuite
233
233
234
234
#expect( link. path. components == [ " Sloth " , " update(_:) " ] )
235
235
#expect( link. path. hasTrailingParentheses)
236
- #expect( link. suffix == . pattern( . fullSignature( [ " _ " , " Int " ] , . tuple( [ " _ " , " Int " ] ) ) ) )
236
+ #expect( link. suffix == . pattern( . fullSignature( [ nil , " Int " ] , . tuple( [ nil , " Int " ] ) ) ) )
237
237
}
238
238
}
0 commit comments