()
| 721 | println!("{}", serde_json::to_string_pretty(&report)?); |
| 722 | } else { |
| 723 | println!("old input: {}", report.old_input_path); |
| 724 | println!("new input: {}", report.new_input_path); |
| 725 | println!( |
| 726 | "snapshot hash: old={} new={}", |
| 727 | report.old_snapshot_hash, report.new_snapshot_hash |
| 728 | ); |
| 729 | println!( |
| 730 | "snapshot hash match: old={} new={} required={}", |
| 731 | report.old_snapshot_hash_match, |
| 732 | report.new_snapshot_hash_match, |
| 733 | report.require_snapshot_hash_match |
| 734 | ); |
| 735 | println!( |
| 736 | "dart aliases: old={} new={}", |
| 737 | serde_json::to_string(&report.old_dart_aliases)?, |
| 738 | serde_json::to_string(&report.new_dart_aliases)? |
| 739 | ); |
| 740 | println!( |
nothing calls this directly
no outgoing calls
no test coverage detected