From e1d7d7b0e365c3ddfee9e52371dd2c6d75e132e6 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Thu, 1 Sep 2022 11:50:12 -0400 Subject: fix(npm): better node version and version requirement compatibility (#15714) --- cli/npm/semver/errors.rs | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 cli/npm/semver/errors.rs (limited to 'cli/npm/semver/errors.rs') diff --git a/cli/npm/semver/errors.rs b/cli/npm/semver/errors.rs new file mode 100644 index 000000000..530d73c55 --- /dev/null +++ b/cli/npm/semver/errors.rs @@ -0,0 +1,38 @@ +// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. + +use deno_core::anyhow::bail; +use deno_core::error::AnyError; +use monch::ParseError; +use monch::ParseErrorFailure; +use monch::ParseResult; + +pub fn with_failure_handling<'a, T>( + combinator: impl Fn(&'a str) -> ParseResult, +) -> impl Fn(&'a str) -> Result { + move |input| match combinator(input) { + Ok((input, result)) => { + if !input.is_empty() { + error_for_failure(fail_for_trailing_input(input)) + } else { + Ok(result) + } + } + Err(ParseError::Backtrace) => { + error_for_failure(fail_for_trailing_input(input)) + } + Err(ParseError::Failure(e)) => error_for_failure(e), + } +} + +fn error_for_failure(e: ParseErrorFailure) -> Result { + bail!( + "{}\n {}\n ~", + e.message, + // truncate the output to prevent wrapping in the console + e.input.chars().take(60).collect::() + ) +} + +fn fail_for_trailing_input(input: &str) -> ParseErrorFailure { + ParseErrorFailure::new(input, "Unexpected character.") +} -- cgit v1.2.3