@@ -4246,8 +4246,8 @@ ERROR(throwing_interpolation_without_try,none,
4246
4246
" interpolation can throw but is not marked with 'try'" , ())
4247
4247
ERROR(throwing_call_without_try,none,
4248
4248
" call can throw but is not marked with 'try'" , ())
4249
- ERROR(throwing_spawn_let_without_try ,none,
4250
- " reading 'spawn let' can throw but is not marked with 'try'" , ())
4249
+ ERROR(throwing_async_let_without_try ,none,
4250
+ " reading 'async let' can throw but is not marked with 'try'" , ())
4251
4251
ERROR(throwing_prop_access_without_try,none,
4252
4252
" property access can throw but is not marked with 'try'" , ())
4253
4253
ERROR(throwing_subscript_access_without_try,none,
@@ -4276,8 +4276,8 @@ NOTE(async_access_without_await,none,
4276
4276
4277
4277
NOTE(async_call_without_await_in_autoclosure,none,
4278
4278
" call is 'async' in an autoclosure argument" , ())
4279
- NOTE(async_call_without_await_in_spawn_let ,none,
4280
- " call is 'async' in an 'spawn let' initializer" , ())
4279
+ NOTE(async_call_without_await_in_async_let ,none,
4280
+ " call is 'async' in an 'async let' initializer" , ())
4281
4281
4282
4282
WARNING(no_async_in_await,none,
4283
4283
" no 'async' operations occur within 'await' expression" , ())
@@ -4290,7 +4290,7 @@ ERROR(await_in_illegal_context,none,
4290
4290
" %select{<<ERROR>>|a default argument|a property wrapper initializer|a property initializer|a global variable initializer|an enum case raw value|a catch pattern|a catch guard expression|a defer body}0" ,
4291
4291
(unsigned ))
4292
4292
ERROR(async_in_nonasync_function,none,
4293
- " %select{'async'|'async' call|'await'|'spawn let'|'async' property access|'async' subscript access}0 in "
4293
+ " %select{'async'|'async' call|'await'|'async let'|'async' property access|'async' subscript access}0 in "
4294
4294
" %select{a function|an autoclosure}1 that does not support concurrency" ,
4295
4295
(unsigned , bool ))
4296
4296
NOTE(note_add_async_to_function,none,
@@ -4428,8 +4428,8 @@ ERROR(actor_isolated_from_concurrent_closure,none,
4428
4428
ERROR(actor_isolated_from_concurrent_function,none,
4429
4429
" actor-isolated %0 %1 cannot be %select{referenced|mutated|used 'inout'}2 from a concurrent function" ,
4430
4430
(DescriptiveDeclKind, DeclName, unsigned ))
4431
- ERROR(actor_isolated_from_spawn_let ,none,
4432
- " actor-isolated %0 %1 cannot be %select{referenced|mutated|used 'inout'}2 from 'spawn let' initializer" ,
4431
+ ERROR(actor_isolated_from_async_let ,none,
4432
+ " actor-isolated %0 %1 cannot be %select{referenced|mutated|used 'inout'}2 from 'async let' initializer" ,
4433
4433
(DescriptiveDeclKind, DeclName, unsigned ))
4434
4434
ERROR(actor_isolated_keypath_component,none,
4435
4435
" cannot form key path to actor-isolated %0 %1" ,
0 commit comments