Skip to content

Commit

Permalink
Support new access modifier package
Browse files Browse the repository at this point in the history
- Modify DependencyEndpoint macro to support new access modifier package
  • Loading branch information
nhenri committed Jan 30, 2024
1 parent 00ace43 commit fc944ba
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ extension DeclModifierListSyntax {
switch $0.name.tokenKind {
case .keyword(let keyword):
switch keyword {
case .fileprivate, .private, .internal, .public:
case .fileprivate, .private, .internal, .package, .public:
return false
default:
return true
Expand Down

0 comments on commit fc944ba

Please sign in to comment.