File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -934,16 +934,13 @@ class ModuleDecl
934
934
enum class ImportFilterKind {
935
935
// / Include imports declared with `@_exported`.
936
936
Exported = 1 << 0 ,
937
- // / Include "regular" imports with an access- level of `public`.
937
+ // / Include "regular" imports with an effective access level of `public`.
938
938
Default = 1 << 1 ,
939
939
// / Include imports declared with `@_implementationOnly`.
940
940
ImplementationOnly = 1 << 2 ,
941
- // / Include imports declared with `package import `.
941
+ // / Include imports declared with an access level of `package`.
942
942
PackageOnly = 1 << 3 ,
943
- // / Include imports marked `internal` or lower. These differs form
944
- // / implementation-only imports by stricter type-checking and loading
945
- // / policies. At this moment, we can group them under the same category
946
- // / as they have the same loading behavior.
943
+ // / Include imports with an effective access level of `internal` or lower.
947
944
InternalOrBelow = 1 << 4 ,
948
945
// / Include imports declared with `@_spiOnly`.
949
946
SPIOnly = 1 << 5 ,
You can’t perform that action at this time.
0 commit comments