@@ -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
@@ -566,17 +566,17 @@ struct AttributedImport {
566566 // / Names of explicitly imported SPI groups.
567567 ArrayRef<Identifier> spiGroups;
568568
569- // / When the import declaration has a `@_predatesConcurrency ` annotation, this
569+ // / When the import declaration has a `@preconcurrency ` annotation, this
570570 // / is the source range covering the annotation.
571- SourceRange predatesConcurrencyRange ;
571+ SourceRange preconcurrencyRange ;
572572
573573 AttributedImport (ModuleInfo module , SourceLoc importLoc = SourceLoc(),
574574 ImportOptions options = ImportOptions(),
575575 StringRef filename = {}, ArrayRef<Identifier> spiGroups = {},
576- SourceRange predatesConcurrencyRange = {})
576+ SourceRange preconcurrencyRange = {})
577577 : module (module ), importLoc(importLoc), options(options),
578578 sourceFileArg (filename), spiGroups(spiGroups),
579- predatesConcurrencyRange(predatesConcurrencyRange ) {
579+ preconcurrencyRange(preconcurrencyRange ) {
580580 assert (!(options.contains (ImportFlags::Exported) &&
581581 options.contains (ImportFlags::ImplementationOnly)) ||
582582 options.contains (ImportFlags::Reserved));
@@ -586,7 +586,7 @@ struct AttributedImport {
586586 AttributedImport (ModuleInfo module , AttributedImport<OtherModuleInfo> other)
587587 : AttributedImport(module , other.importLoc, other.options,
588588 other.sourceFileArg, other.spiGroups,
589- other.predatesConcurrencyRange ) { }
589+ other.preconcurrencyRange ) { }
590590
591591 friend bool operator ==(const AttributedImport<ModuleInfo> &lhs,
592592 const AttributedImport<ModuleInfo> &rhs) {
0 commit comments