@@ -4231,8 +4231,8 @@ ERROR(throwing_interpolation_without_try,none,
42314231 " interpolation can throw but is not marked with 'try'" , ())
42324232ERROR(throwing_call_without_try,none,
42334233 " call can throw but is not marked with 'try'" , ())
4234- ERROR(throwing_async_let_without_try ,none,
4235- " reading 'async let' can throw but is not marked with 'try'" , ())
4234+ ERROR(throwing_spawn_let_without_try ,none,
4235+ " reading 'spawn let' can throw but is not marked with 'try'" , ())
42364236ERROR(throwing_prop_access_without_try,none,
42374237 " property access can throw but is not marked with 'try'" , ())
42384238ERROR(throwing_subscript_access_without_try,none,
@@ -4261,8 +4261,8 @@ NOTE(async_access_without_await,none,
42614261
42624262NOTE(async_call_without_await_in_autoclosure,none,
42634263 " call is 'async' in an autoclosure argument" , ())
4264- NOTE(async_call_without_await_in_async_let ,none,
4265- " call is 'async' in an 'async let' initializer" , ())
4264+ NOTE(async_call_without_await_in_spawn_let ,none,
4265+ " call is 'async' in an 'spawn let' initializer" , ())
42664266
42674267WARNING(no_async_in_await,none,
42684268 " no 'async' operations occur within 'await' expression" , ())
@@ -4275,7 +4275,7 @@ ERROR(await_in_illegal_context,none,
42754275 " %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" ,
42764276 (unsigned ))
42774277ERROR(async_in_nonasync_function,none,
4278- " %select{'async'|'async' call|'await'|'async let'|'async' property access|'async' subscript access}0 in "
4278+ " %select{'async'|'async' call|'await'|'spawn let'|'async' property access|'async' subscript access}0 in "
42794279 " %select{a function|an autoclosure}1 that does not support concurrency" ,
42804280 (unsigned , bool ))
42814281NOTE(note_add_async_to_function,none,
@@ -4406,8 +4406,8 @@ ERROR(actor_isolated_from_concurrent_closure,none,
44064406ERROR(actor_isolated_from_concurrent_function,none,
44074407 " actor-isolated %0 %1 cannot be %select{referenced|mutated|used 'inout'}2 from a concurrent function" ,
44084408 (DescriptiveDeclKind, DeclName, unsigned ))
4409- ERROR(actor_isolated_from_async_let ,none,
4410- " actor-isolated %0 %1 cannot be %select{referenced|mutated|used 'inout'}2 from 'async let' initializer" ,
4409+ ERROR(actor_isolated_from_spawn_let ,none,
4410+ " actor-isolated %0 %1 cannot be %select{referenced|mutated|used 'inout'}2 from 'spawn let' initializer" ,
44114411 (DescriptiveDeclKind, DeclName, unsigned ))
44124412ERROR(actor_isolated_keypath_component,none,
44134413 " cannot form key path to actor-isolated %0 %1" ,
0 commit comments