@@ -4246,8 +4246,8 @@ ERROR(throwing_interpolation_without_try,none,
42464246 " interpolation can throw but is not marked with 'try'" , ())
42474247ERROR(throwing_call_without_try,none,
42484248 " 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'" , ())
42514251ERROR(throwing_prop_access_without_try,none,
42524252 " property access can throw but is not marked with 'try'" , ())
42534253ERROR(throwing_subscript_access_without_try,none,
@@ -4276,8 +4276,8 @@ NOTE(async_access_without_await,none,
42764276
42774277NOTE(async_call_without_await_in_autoclosure,none,
42784278 " 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" , ())
42814281
42824282WARNING(no_async_in_await,none,
42834283 " no 'async' operations occur within 'await' expression" , ())
@@ -4290,7 +4290,7 @@ ERROR(await_in_illegal_context,none,
42904290 " %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" ,
42914291 (unsigned ))
42924292ERROR(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 "
42944294 " %select{a function|an autoclosure}1 that does not support concurrency" ,
42954295 (unsigned , bool ))
42964296NOTE(note_add_async_to_function,none,
@@ -4428,8 +4428,8 @@ ERROR(actor_isolated_from_concurrent_closure,none,
44284428ERROR(actor_isolated_from_concurrent_function,none,
44294429 " actor-isolated %0 %1 cannot be %select{referenced|mutated|used 'inout'}2 from a concurrent function" ,
44304430 (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" ,
44334433 (DescriptiveDeclKind, DeclName, unsigned ))
44344434ERROR(actor_isolated_keypath_component,none,
44354435 " cannot form key path to actor-isolated %0 %1" ,
0 commit comments