summaryrefslogtreecommitdiff
path: root/ext/url/lib.rs
diff options
context:
space:
mode:
authorLeo Kettmeir <crowlkats@toaxl.com>2024-10-14 14:15:31 -0700
committerGitHub <noreply@github.com>2024-10-14 14:15:31 -0700
commit48cbf85add1a9a5c3e583c68c80d16420e606502 (patch)
tree4bc58cfa365dd100af46b5c60b356a5a3bbcac27 /ext/url/lib.rs
parentcb385d9e4acbd81235c3784d7e56b49c3fa41dd3 (diff)
refactor(ext/url): use concrete error types (#26172)
Diffstat (limited to 'ext/url/lib.rs')
-rw-r--r--ext/url/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/url/lib.rs b/ext/url/lib.rs
index 6869d656b..f8946532a 100644
--- a/ext/url/lib.rs
+++ b/ext/url/lib.rs
@@ -15,6 +15,8 @@ use std::path::PathBuf;
use crate::urlpattern::op_urlpattern_parse;
use crate::urlpattern::op_urlpattern_process_match_input;
+pub use urlpattern::UrlPatternError;
+
deno_core::extension!(
deno_url,
deps = [deno_webidl],