mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 18:38:33 +00:00
refactor(cli,ext,ops): cleanup regex
with lazy-regex
(#17296)
- bump deps: the newest `lazy-regex` need newer `oncecell` and `regex` - reduce `unwrap` - remove dep `lazy_static` - make more regex cached --------- Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
This commit is contained in:
parent
19c3e4f6dc
commit
d790ea7d53
23 changed files with 96 additions and 91 deletions
|
@ -6,6 +6,7 @@ use deno_core::serde::Deserialize;
|
|||
use deno_core::serde::Deserializer;
|
||||
use deno_core::serde::Serialize;
|
||||
use deno_core::serde::Serializer;
|
||||
use lazy_regex::lazy_regex;
|
||||
use once_cell::sync::Lazy;
|
||||
use regex::Regex;
|
||||
use std::error::Error;
|
||||
|
@ -36,13 +37,11 @@ const UNSTABLE_DENO_PROPS: &[&str] = &[
|
|||
"osUptime",
|
||||
];
|
||||
|
||||
static MSG_MISSING_PROPERTY_DENO: Lazy<Regex> = Lazy::new(|| {
|
||||
Regex::new(r#"Property '([^']+)' does not exist on type 'typeof Deno'"#)
|
||||
.unwrap()
|
||||
});
|
||||
static MSG_MISSING_PROPERTY_DENO: Lazy<Regex> =
|
||||
lazy_regex!(r#"Property '([^']+)' does not exist on type 'typeof Deno'"#);
|
||||
|
||||
static MSG_SUGGESTION: Lazy<Regex> =
|
||||
Lazy::new(|| Regex::new(r#" Did you mean '([^']+)'\?"#).unwrap());
|
||||
lazy_regex!(r#" Did you mean '([^']+)'\?"#);
|
||||
|
||||
/// Potentially convert a "raw" diagnostic message from TSC to something that
|
||||
/// provides a more sensible error message given a Deno runtime context.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue