(index: &mut ScriptDoctorIndex, signal: String, file: &Path, line: usize)
| 943 | report: &mut scratch, |
| 944 | }; |
| 945 | validate_script_value_node_ref_hint(&mut scratch_ctx, &label, value, field, index); |
| 946 | if scratch.warnings == 0 && scratch.errors == 0 { |
| 947 | any_clean = true; |
| 948 | break; |
| 949 | } |
| 950 | if best_bad |
| 951 | .as_ref() |
| 952 | .is_none_or(|bad| scratch.warnings < bad.warnings) |
| 953 | { |
| 954 | best_bad = Some(scratch); |
| 955 | } |
| 956 | } |
| 957 | if any_clean { |
no test coverage detected