@@ -82,7 +82,7 @@ enum class ImportFlags {
8282
8383 // / The module is imported assuming that the module itself predates
8484 // / concurrency.
85- PredatesConcurrency = 0x20 ,
85+ Preconcurrency = 0x20 ,
8686
8787 // / Used for DenseMap.
8888 Reserved = 0x80
@@ -550,17 +550,17 @@ struct AttributedImport {
550550 // / Names of explicitly imported SPI groups.
551551 ArrayRef<Identifier> spiGroups;
552552
553- // / When the import declaration has a `@_predatesConcurrency ` annotation, this
553+ // / When the import declaration has a `@preconcurrency ` annotation, this
554554 // / is the source range covering the annotation.
555- SourceRange predatesConcurrencyRange ;
555+ SourceRange preconcurrencyRange ;
556556
557557 AttributedImport (ModuleInfo module , SourceLoc importLoc = SourceLoc(),
558558 ImportOptions options = ImportOptions(),
559559 StringRef filename = {}, ArrayRef<Identifier> spiGroups = {},
560- SourceRange predatesConcurrencyRange = {})
560+ SourceRange preconcurrencyRange = {})
561561 : module (module ), importLoc(importLoc), options(options),
562562 sourceFileArg (filename), spiGroups(spiGroups),
563- predatesConcurrencyRange(predatesConcurrencyRange ) {
563+ preconcurrencyRange(preconcurrencyRange ) {
564564 assert (!(options.contains (ImportFlags::Exported) &&
565565 options.contains (ImportFlags::ImplementationOnly)) ||
566566 options.contains (ImportFlags::Reserved));
@@ -570,7 +570,7 @@ struct AttributedImport {
570570 AttributedImport (ModuleInfo module , AttributedImport<OtherModuleInfo> other)
571571 : AttributedImport(module , other.importLoc, other.options,
572572 other.sourceFileArg, other.spiGroups,
573- other.predatesConcurrencyRange ) { }
573+ other.preconcurrencyRange ) { }
574574
575575 friend bool operator ==(const AttributedImport<ModuleInfo> &lhs,
576576 const AttributedImport<ModuleInfo> &rhs) {
0 commit comments