You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Duchess currently doesn't check the visibility of the classes, methods and fields declared in a java_package!{ .. } macro. That is, a user might declare something as public while the item is actually private. A good place to implement these checks is at https://github.com/duchess-rs/duchess/blob/main/macro/src/check.rs.
This issue might be seen as part of #86, but I think it's possible to work on the two idependently.
To see an example of how to test the error messages, refer to the PR #81.
The text was updated successfully, but these errors were encountered:
Duchess currently doesn't check the visibility of the classes, methods and fields declared in a
java_package!{ .. }
macro. That is, a user might declare something as public while the item is actually private. A good place to implement these checks is at https://github.com/duchess-rs/duchess/blob/main/macro/src/check.rs.This issue might be seen as part of #86, but I think it's possible to work on the two idependently.
To see an example of how to test the error messages, refer to the PR #81.
The text was updated successfully, but these errors were encountered: