Skip to content

Commit 0c2db36

Browse files
stroxlerfacebook-github-bot
authored andcommitted
Remove pub on private StaticInfo fields
Reviewed By: rchen152 Differential Revision: D82326000 fbshipit-source-id: 49cf16141cfb6485bf6221e9c31a51284e53cd91
1 parent 79db51b commit 0c2db36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pyrefly/lib/binding/scope.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ pub struct StaticInfo {
7272
/// How many times this will be redefined
7373
pub count: usize,
7474
/// How was this defined? Needed to determine the key for forward lookups.
75-
pub style: DefinitionStyle,
75+
style: DefinitionStyle,
7676
/// Is this a mutable catpure of a definition in an outer scope (i.e. a global or a nonlocal)?
77-
pub is_mutable_capture: bool,
77+
is_mutable_capture: bool,
7878
}
7979

8080
impl StaticInfo {

0 commit comments

Comments
 (0)