summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/00_primordials.js2
-rw-r--r--core/01_core.js2
-rw-r--r--core/02_error.js2
-rw-r--r--core/Cargo.toml2
-rw-r--r--core/async_cancel.rs2
-rw-r--r--core/async_cell.rs2
-rw-r--r--core/bindings.rs2
-rw-r--r--core/encode_decode_test.js2
-rw-r--r--core/error.rs2
-rw-r--r--core/error_builder_test.js2
-rw-r--r--core/examples/disable_ops.rs2
-rw-r--r--core/examples/eval_js_value.rs2
-rw-r--r--core/examples/fs_module_loader.rs2
-rw-r--r--core/examples/hello_world.rs2
-rw-r--r--core/examples/http_bench_json_ops.js2
-rw-r--r--core/examples/http_bench_json_ops.rs2
-rw-r--r--core/examples/panik.rs2
-rw-r--r--core/examples/schedule_task.rs2
-rw-r--r--core/examples/ts_module_loader.rs2
-rw-r--r--core/examples/wasm.js2
-rw-r--r--core/examples/wasm.rs2
-rw-r--r--core/examples/wasm.ts2
-rw-r--r--core/extensions.rs2
-rw-r--r--core/flags.rs2
-rw-r--r--core/gotham_state.rs2
-rw-r--r--core/inspector.rs2
-rw-r--r--core/internal.d.ts2
-rw-r--r--core/io.rs2
-rw-r--r--core/lib.deno_core.d.ts2
-rw-r--r--core/lib.rs2
-rw-r--r--core/module_specifier.rs2
-rw-r--r--core/modules.rs2
-rw-r--r--core/normalize_path.rs2
-rw-r--r--core/ops.rs2
-rw-r--r--core/ops_builtin.rs2
-rw-r--r--core/ops_builtin_v8.rs2
-rw-r--r--core/ops_metrics.rs2
-rw-r--r--core/resources.rs2
-rw-r--r--core/runtime.rs2
-rw-r--r--core/serialize_deserialize_test.js2
-rw-r--r--core/source_map.rs2
41 files changed, 41 insertions, 41 deletions
diff --git a/core/00_primordials.js b/core/00_primordials.js
index 19e16860f..33d7299d5 100644
--- a/core/00_primordials.js
+++ b/core/00_primordials.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Based on https://github.com/nodejs/node/blob/889ad35d3d41e376870f785b0c1b669cb732013d/lib/internal/per_context/primordials.js
// Copyright Joyent, Inc. and other Node contributors.
diff --git a/core/01_core.js b/core/01_core.js
index 2560f979d..0b0804662 100644
--- a/core/01_core.js
+++ b/core/01_core.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/core/02_error.js b/core/02_error.js
index d8e823bb2..2798b1aa7 100644
--- a/core/02_error.js
+++ b/core/02_error.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/core/Cargo.toml b/core/Cargo.toml
index a9bff0af5..c74537549 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -1,4 +1,4 @@
-# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_core"
diff --git a/core/async_cancel.rs b/core/async_cancel.rs
index 11b07e189..a282194f5 100644
--- a/core/async_cancel.rs
+++ b/core/async_cancel.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::RcLike;
use crate::Resource;
diff --git a/core/async_cell.rs b/core/async_cell.rs
index e643af782..f95dc3a84 100644
--- a/core/async_cell.rs
+++ b/core/async_cell.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::any::type_name;
use std::any::Any;
diff --git a/core/bindings.rs b/core/bindings.rs
index a28618571..191538bd2 100644
--- a/core/bindings.rs
+++ b/core/bindings.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::error::is_instance_of_error;
use crate::modules::get_asserted_module_type_from_assertions;
diff --git a/core/encode_decode_test.js b/core/encode_decode_test.js
index 663bc1af6..0f4668765 100644
--- a/core/encode_decode_test.js
+++ b/core/encode_decode_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
"use strict";
function assert(cond) {
if (!cond) {
diff --git a/core/error.rs b/core/error.rs
index 61e3529fd..d788e14b5 100644
--- a/core/error.rs
+++ b/core/error.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::runtime::GetErrorClassFn;
use crate::runtime::JsRealm;
diff --git a/core/error_builder_test.js b/core/error_builder_test.js
index 7f8965127..f442819cb 100644
--- a/core/error_builder_test.js
+++ b/core/error_builder_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
const { core } = Deno;
const { ops } = core;
diff --git a/core/examples/disable_ops.rs b/core/examples/disable_ops.rs
index c1473b193..a99568589 100644
--- a/core/examples/disable_ops.rs
+++ b/core/examples/disable_ops.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
//! This example shows you how to define ops in Rust and then call them from
//! JavaScript.
diff --git a/core/examples/eval_js_value.rs b/core/examples/eval_js_value.rs
index 920a3c532..7bb954371 100644
--- a/core/examples/eval_js_value.rs
+++ b/core/examples/eval_js_value.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
//! This example shows you how to evaluate JavaScript expression and deserialize
//! return value into a Rust object.
diff --git a/core/examples/fs_module_loader.rs b/core/examples/fs_module_loader.rs
index cd22e022c..0fe122238 100644
--- a/core/examples/fs_module_loader.rs
+++ b/core/examples/fs_module_loader.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use deno_core::anyhow::Error;
use deno_core::FsModuleLoader;
diff --git a/core/examples/hello_world.rs b/core/examples/hello_world.rs
index 9260cfe56..a1edbead0 100644
--- a/core/examples/hello_world.rs
+++ b/core/examples/hello_world.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
//! This example shows you how to define ops in Rust and then call them from
//! JavaScript.
diff --git a/core/examples/http_bench_json_ops.js b/core/examples/http_bench_json_ops.js
index 261d91559..28c491064 100644
--- a/core/examples/http_bench_json_ops.js
+++ b/core/examples/http_bench_json_ops.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// This is not a real HTTP server. We read blindly one time into 'requestBuf',
// then write this fixed 'responseBuf'. The point of this benchmark is to
// exercise the event loop in a simple yet semi-realistic way.
diff --git a/core/examples/http_bench_json_ops.rs b/core/examples/http_bench_json_ops.rs
index af57f3121..23945c632 100644
--- a/core/examples/http_bench_json_ops.rs
+++ b/core/examples/http_bench_json_ops.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use deno_core::anyhow::Error;
use deno_core::op;
use deno_core::AsyncRefCell;
diff --git a/core/examples/panik.rs b/core/examples/panik.rs
index 23efcbb3b..76be108ec 100644
--- a/core/examples/panik.rs
+++ b/core/examples/panik.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
//! This example shows that op-panics currently result in UB (likely "failed to initiate panic")
//! without a custom panic hook that aborts the process or -C panic=abort.
//!
diff --git a/core/examples/schedule_task.rs b/core/examples/schedule_task.rs
index 475c2d9ad..ba0f3ef0f 100644
--- a/core/examples/schedule_task.rs
+++ b/core/examples/schedule_task.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use deno_core::anyhow::Error;
use deno_core::op;
diff --git a/core/examples/ts_module_loader.rs b/core/examples/ts_module_loader.rs
index 50d101b87..5493029a4 100644
--- a/core/examples/ts_module_loader.rs
+++ b/core/examples/ts_module_loader.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
//! This example shows how to use swc to transpile TypeScript and JSX/TSX
//! modules.
//!
diff --git a/core/examples/wasm.js b/core/examples/wasm.js
index 69e475639..cb6a4af52 100644
--- a/core/examples/wasm.js
+++ b/core/examples/wasm.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// asc wasm.ts --exportStart --initialMemory 6400 -O -o wasm.wasm
// deno-fmt-ignore
diff --git a/core/examples/wasm.rs b/core/examples/wasm.rs
index ef68d8aa4..c4bb8b9ad 100644
--- a/core/examples/wasm.rs
+++ b/core/examples/wasm.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use deno_core::op;
use deno_core::Extension;
diff --git a/core/examples/wasm.ts b/core/examples/wasm.ts
index cdb9cf78c..4cf364c3a 100644
--- a/core/examples/wasm.ts
+++ b/core/examples/wasm.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
export declare function op_wasm(): void;
diff --git a/core/extensions.rs b/core/extensions.rs
index 7b9ab5908..6fca570df 100644
--- a/core/extensions.rs
+++ b/core/extensions.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::OpState;
use anyhow::Error;
use std::{cell::RefCell, rc::Rc, task::Context};
diff --git a/core/flags.rs b/core/flags.rs
index 119dfb161..f68d0a422 100644
--- a/core/flags.rs
+++ b/core/flags.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
/// Pass the command line arguments to v8.
/// Returns a vector of command line arguments that V8 did not understand.
diff --git a/core/gotham_state.rs b/core/gotham_state.rs
index 6c637ac50..422499f2f 100644
--- a/core/gotham_state.rs
+++ b/core/gotham_state.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Forked from Gotham:
// https://github.com/gotham-rs/gotham/blob/bcbbf8923789e341b7a0e62c59909428ca4e22e2/gotham/src/state/mod.rs
// Copyright 2017 Gotham Project Developers. MIT license.
diff --git a/core/inspector.rs b/core/inspector.rs
index 0b04bf5f8..2b03d663d 100644
--- a/core/inspector.rs
+++ b/core/inspector.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
//! The documentation for the inspector API is sparse, but these are helpful:
//! <https://chromedevtools.github.io/devtools-protocol/>
diff --git a/core/internal.d.ts b/core/internal.d.ts
index 917c0262e..1871c50fc 100644
--- a/core/internal.d.ts
+++ b/core/internal.d.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Based on https://github.com/nodejs/node/blob/889ad35d3d41e376870f785b0c1b669cb732013d/typings/primordials.d.ts
// Copyright Joyent, Inc. and other Node contributors.
diff --git a/core/io.rs b/core/io.rs
index 7baad12e4..103fe79c1 100644
--- a/core/io.rs
+++ b/core/io.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::ops::Deref;
use std::ops::DerefMut;
diff --git a/core/lib.deno_core.d.ts b/core/lib.deno_core.d.ts
index 6de3bed4b..ad6739b3c 100644
--- a/core/lib.deno_core.d.ts
+++ b/core/lib.deno_core.d.ts
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// deno-lint-ignore-file no-explicit-any
diff --git a/core/lib.rs b/core/lib.rs
index 011fa6c50..d764718a2 100644
--- a/core/lib.rs
+++ b/core/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
mod async_cancel;
mod async_cell;
mod bindings;
diff --git a/core/module_specifier.rs b/core/module_specifier.rs
index 4727ff2cb..1d7abd1ca 100644
--- a/core/module_specifier.rs
+++ b/core/module_specifier.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::normalize_path;
use std::env::current_dir;
diff --git a/core/modules.rs b/core/modules.rs
index 1041f44f8..ff253db61 100644
--- a/core/modules.rs
+++ b/core/modules.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::bindings;
use crate::error::generic_error;
diff --git a/core/normalize_path.rs b/core/normalize_path.rs
index a295b55e6..43af6fea6 100644
--- a/core/normalize_path.rs
+++ b/core/normalize_path.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use std::path::Component;
use std::path::Path;
diff --git a/core/ops.rs b/core/ops.rs
index 65b511532..806059ed6 100644
--- a/core/ops.rs
+++ b/core/ops.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::error::AnyError;
use crate::gotham_state::GothamState;
diff --git a/core/ops_builtin.rs b/core/ops_builtin.rs
index 6374e9951..6889c5dbc 100644
--- a/core/ops_builtin.rs
+++ b/core/ops_builtin.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::error::format_file_name;
use crate::error::type_error;
use crate::include_js_files;
diff --git a/core/ops_builtin_v8.rs b/core/ops_builtin_v8.rs
index 5ef185757..2b07c5bf1 100644
--- a/core/ops_builtin_v8.rs
+++ b/core/ops_builtin_v8.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::bindings::script_origin;
use crate::error::custom_error;
use crate::error::is_instance_of_error;
diff --git a/core/ops_metrics.rs b/core/ops_metrics.rs
index 8c6ef3a7c..7daeaab19 100644
--- a/core/ops_metrics.rs
+++ b/core/ops_metrics.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::serde::Serialize;
use crate::OpId;
diff --git a/core/resources.rs b/core/resources.rs
index 164c377a2..5bec68481 100644
--- a/core/resources.rs
+++ b/core/resources.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
// Think of Resources as File Descriptors. They are integers that are allocated
// by the privileged side of Deno which refer to various rust objects that need
diff --git a/core/runtime.rs b/core/runtime.rs
index 1874409eb..4a1302b3f 100644
--- a/core/runtime.rs
+++ b/core/runtime.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
use crate::bindings;
use crate::error::generic_error;
diff --git a/core/serialize_deserialize_test.js b/core/serialize_deserialize_test.js
index 724239fcb..70397cdf8 100644
--- a/core/serialize_deserialize_test.js
+++ b/core/serialize_deserialize_test.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
"use strict";
function assert(cond) {
diff --git a/core/source_map.rs b/core/source_map.rs
index 0df58c4be..9172ce341 100644
--- a/core/source_map.rs
+++ b/core/source_map.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
//! This mod provides functions to remap a `JsError` based on a source map.