We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3db4efa commit 01cc48fCopy full SHA for 01cc48f
polonius-engine/src/output/initialization.rs
@@ -206,12 +206,14 @@ fn compute_move_errors<T: FactTypes>(
206
);
207
}
208
209
- for &(path, location) in path_maybe_initialized_on_exit.complete().iter() {
210
- output
211
- .path_maybe_initialized_on_exit
212
- .entry(location)
213
- .or_default()
214
- .push(path);
+ if output.dump_enabled {
+ for &(path, location) in path_maybe_initialized_on_exit.complete().iter() {
+ output
+ .path_maybe_initialized_on_exit
+ .entry(location)
+ .or_default()
215
+ .push(path);
216
+ }
217
218
219
InitializationStatus {
0 commit comments