(
cause: impl Into<String>,
hint: impl Into<String>,
diagnostics: ErrorDiagnostics,
)
| 684 | } |
| 685 | |
| 686 | fn package_manager_invalid_input( |
| 687 | cause: impl Into<String>, |
| 688 | hint: impl Into<String>, |
| 689 | diagnostics: ErrorDiagnostics, |
| 690 | ) -> NodeupError { |
| 691 | NodeupError::with_hint_and_diagnostics( |
| 692 | crate::errors::ErrorKind::InvalidInput, |
| 693 | cause, |
| 694 | hint, |
| 695 | diagnostics, |
| 696 | ) |
| 697 | } |
| 698 | |
| 699 | struct PackageManagerDiagnosticsInput<'a> { |
| 700 | package_json_path: &'a Path, |
no outgoing calls
no test coverage detected