summaryrefslogtreecommitdiff
path: root/runtime/shared.rs
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/shared.rs')
-rw-r--r--runtime/shared.rs23
1 files changed, 0 insertions, 23 deletions
diff --git a/runtime/shared.rs b/runtime/shared.rs
index c52521690..1b2136c63 100644
--- a/runtime/shared.rs
+++ b/runtime/shared.rs
@@ -116,26 +116,3 @@ pub fn maybe_transpile_source(
Ok((source_text.into(), maybe_source_map))
}
-
-pub fn import_assertion_callback(
- args: deno_core::ImportAssertionsSupportCustomCallbackArgs,
-) {
- let mut msg = deno_terminal::colors::yellow("⚠️ Import assertions are deprecated. Use `with` keyword, instead of 'assert' keyword.").to_string();
- if let Some(specifier) = args.maybe_specifier {
- if let Some(source_line) = args.maybe_source_line {
- msg.push_str("\n\n");
- msg.push_str(&source_line);
- msg.push_str("\n\n");
- }
- msg.push_str(&format!(
- " at {}:{}:{}\n",
- specifier,
- args.maybe_line_number.unwrap(),
- args.column_number
- ));
- #[allow(clippy::print_stderr)]
- {
- eprintln!("{}", msg);
- }
- }
-}