summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2022-01-07 22:09:52 -0500
committerGitHub <noreply@github.com>2022-01-07 22:09:52 -0500
commit1fb5858009f598ce3f917f9f49c466db81f4d9b0 (patch)
treed11d37479040ee3adeaca5b828fddb8e7fd927a0 /runtime
parent12423e16b7df39b2bf995efd1376ba4b6ef41e02 (diff)
chore: update copyright to 2022 (#13306)
Co-authored-by: Erfan Safari <erfanshield@outlook.com>
Diffstat (limited to 'runtime')
-rw-r--r--runtime/Cargo.toml2
-rw-r--r--runtime/build.rs2
-rw-r--r--runtime/colors.rs2
-rw-r--r--runtime/errors.rs2
-rw-r--r--runtime/examples/hello_runtime.js2
-rw-r--r--runtime/examples/hello_runtime.rs2
-rw-r--r--runtime/fs_util.rs2
-rw-r--r--runtime/inspector_server.rs2
-rw-r--r--runtime/js.rs2
-rw-r--r--runtime/js/01_build.js2
-rw-r--r--runtime/js/01_errors.js2
-rw-r--r--runtime/js/01_version.js2
-rw-r--r--runtime/js/01_web_util.js2
-rw-r--r--runtime/js/06_util.js2
-rw-r--r--runtime/js/10_permissions.js2
-rw-r--r--runtime/js/11_workers.js2
-rw-r--r--runtime/js/12_io.js2
-rw-r--r--runtime/js/13_buffer.js2
-rw-r--r--runtime/js/30_fs.js2
-rw-r--r--runtime/js/30_os.js2
-rw-r--r--runtime/js/40_compiler_api.js2
-rw-r--r--runtime/js/40_diagnostics.js2
-rw-r--r--runtime/js/40_error_stack.js2
-rw-r--r--runtime/js/40_files.js2
-rw-r--r--runtime/js/40_fs_events.js2
-rw-r--r--runtime/js/40_http.js2
-rw-r--r--runtime/js/40_process.js2
-rw-r--r--runtime/js/40_read_file.js2
-rw-r--r--runtime/js/40_signals.js2
-rw-r--r--runtime/js/40_testing.js2
-rw-r--r--runtime/js/40_tty.js2
-rw-r--r--runtime/js/40_write_file.js2
-rw-r--r--runtime/js/41_prompt.js2
-rw-r--r--runtime/js/90_deno_ns.js2
-rw-r--r--runtime/js/99_main.js2
-rw-r--r--runtime/lib.rs2
-rw-r--r--runtime/ops/fs.rs2
-rw-r--r--runtime/ops/fs_events.rs2
-rw-r--r--runtime/ops/io.rs2
-rw-r--r--runtime/ops/mod.rs2
-rw-r--r--runtime/ops/os.rs2
-rw-r--r--runtime/ops/permissions.rs2
-rw-r--r--runtime/ops/process.rs2
-rw-r--r--runtime/ops/runtime.rs2
-rw-r--r--runtime/ops/signal.rs2
-rw-r--r--runtime/ops/tty.rs2
-rw-r--r--runtime/ops/utils.rs2
-rw-r--r--runtime/ops/web_worker.rs2
-rw-r--r--runtime/ops/web_worker/sync_fetch.rs2
-rw-r--r--runtime/ops/worker_host.rs2
-rw-r--r--runtime/permissions.rs2
-rw-r--r--runtime/tokio_util.rs2
-rw-r--r--runtime/web_worker.rs2
-rw-r--r--runtime/worker.rs2
54 files changed, 54 insertions, 54 deletions
diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml
index f91585099..67fc6a82d 100644
--- a/runtime/Cargo.toml
+++ b/runtime/Cargo.toml
@@ -1,4 +1,4 @@
-# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
[package]
name = "deno_runtime"
diff --git a/runtime/build.rs b/runtime/build.rs
index c83f13070..d1e8517b8 100644
--- a/runtime/build.rs
+++ b/runtime/build.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use std::env;
use std::path::Path;
diff --git a/runtime/colors.rs b/runtime/colors.rs
index c66f528db..f2dbf22bd 100644
--- a/runtime/colors.rs
+++ b/runtime/colors.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use once_cell::sync::Lazy;
use std::fmt;
diff --git a/runtime/errors.rs b/runtime/errors.rs
index c16572b5a..0f6df5828 100644
--- a/runtime/errors.rs
+++ b/runtime/errors.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
//! There are many types of errors in Deno:
//! - AnyError: a generic wrapper that can encapsulate any type of error.
diff --git a/runtime/examples/hello_runtime.js b/runtime/examples/hello_runtime.js
index e2db3139e..6c5679f09 100644
--- a/runtime/examples/hello_runtime.js
+++ b/runtime/examples/hello_runtime.js
@@ -1,3 +1,3 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
console.log("Hello world!");
console.log(Deno);
diff --git a/runtime/examples/hello_runtime.rs b/runtime/examples/hello_runtime.rs
index 5ff482c56..74a9ef398 100644
--- a/runtime/examples/hello_runtime.rs
+++ b/runtime/examples/hello_runtime.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::AnyError;
use deno_core::FsModuleLoader;
diff --git a/runtime/fs_util.rs b/runtime/fs_util.rs
index 695b3be62..02bcddd76 100644
--- a/runtime/fs_util.rs
+++ b/runtime/fs_util.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::anyhow::Context;
use deno_core::error::AnyError;
diff --git a/runtime/inspector_server.rs b/runtime/inspector_server.rs
index 04a8db959..899e128c7 100644
--- a/runtime/inspector_server.rs
+++ b/runtime/inspector_server.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use core::convert::Infallible as Never; // Alias for the future `!` type.
use deno_core::error::AnyError;
diff --git a/runtime/js.rs b/runtime/js.rs
index 904377b89..58053ac02 100644
--- a/runtime/js.rs
+++ b/runtime/js.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::Snapshot;
use log::debug;
diff --git a/runtime/js/01_build.js b/runtime/js/01_build.js
index 94b0feea3..57ac13883 100644
--- a/runtime/js/01_build.js
+++ b/runtime/js/01_build.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/01_errors.js b/runtime/js/01_errors.js
index 844a8872a..ff2cf89fa 100644
--- a/runtime/js/01_errors.js
+++ b/runtime/js/01_errors.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/01_version.js b/runtime/js/01_version.js
index d25a5175d..bd89c6a1e 100644
--- a/runtime/js/01_version.js
+++ b/runtime/js/01_version.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/01_web_util.js b/runtime/js/01_web_util.js
index ca3d74826..450ad5743 100644
--- a/runtime/js/01_web_util.js
+++ b/runtime/js/01_web_util.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/06_util.js b/runtime/js/06_util.js
index 97c0adea4..9b255615e 100644
--- a/runtime/js/06_util.js
+++ b/runtime/js/06_util.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/10_permissions.js b/runtime/js/10_permissions.js
index a6884aab9..f3498b950 100644
--- a/runtime/js/10_permissions.js
+++ b/runtime/js/10_permissions.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/11_workers.js b/runtime/js/11_workers.js
index 8f0095056..4510004d6 100644
--- a/runtime/js/11_workers.js
+++ b/runtime/js/11_workers.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/12_io.js b/runtime/js/12_io.js
index 213e0a1ee..2e466c81f 100644
--- a/runtime/js/12_io.js
+++ b/runtime/js/12_io.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Interfaces 100% copied from Go.
// Documentation liberally lifted from them too.
diff --git a/runtime/js/13_buffer.js b/runtime/js/13_buffer.js
index fe5e5a223..d62092010 100644
--- a/runtime/js/13_buffer.js
+++ b/runtime/js/13_buffer.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// This code has been ported almost directly from Go's src/bytes/buffer.go
// Copyright 2009 The Go Authors. All rights reserved. BSD license.
diff --git a/runtime/js/30_fs.js b/runtime/js/30_fs.js
index feb9f8f54..bdd575f19 100644
--- a/runtime/js/30_fs.js
+++ b/runtime/js/30_fs.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/30_os.js b/runtime/js/30_os.js
index f6bada6a5..4c3c18846 100644
--- a/runtime/js/30_os.js
+++ b/runtime/js/30_os.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_compiler_api.js b/runtime/js/40_compiler_api.js
index 4d5cda398..011373eb0 100644
--- a/runtime/js/40_compiler_api.js
+++ b/runtime/js/40_compiler_api.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// @ts-check
diff --git a/runtime/js/40_diagnostics.js b/runtime/js/40_diagnostics.js
index f4ab67689..a6aba7b2e 100644
--- a/runtime/js/40_diagnostics.js
+++ b/runtime/js/40_diagnostics.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Diagnostic provides an abstraction for advice/errors received from a
// compiler, which is strongly influenced by the format of TypeScript
diff --git a/runtime/js/40_error_stack.js b/runtime/js/40_error_stack.js
index c8f2aff5a..7ed463273 100644
--- a/runtime/js/40_error_stack.js
+++ b/runtime/js/40_error_stack.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_files.js b/runtime/js/40_files.js
index dfd471750..d7768375b 100644
--- a/runtime/js/40_files.js
+++ b/runtime/js/40_files.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_fs_events.js b/runtime/js/40_fs_events.js
index 8402cb459..27825eaac 100644
--- a/runtime/js/40_fs_events.js
+++ b/runtime/js/40_fs_events.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_http.js b/runtime/js/40_http.js
index d68b4f45c..9afca0f5b 100644
--- a/runtime/js/40_http.js
+++ b/runtime/js/40_http.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_process.js b/runtime/js/40_process.js
index 26d452a4d..8d9f402ff 100644
--- a/runtime/js/40_process.js
+++ b/runtime/js/40_process.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_read_file.js b/runtime/js/40_read_file.js
index 5e90b523a..5862454db 100644
--- a/runtime/js/40_read_file.js
+++ b/runtime/js/40_read_file.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_signals.js b/runtime/js/40_signals.js
index 2498c40d7..d387b068f 100644
--- a/runtime/js/40_signals.js
+++ b/runtime/js/40_signals.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_testing.js b/runtime/js/40_testing.js
index 90da6ddb0..118db5db1 100644
--- a/runtime/js/40_testing.js
+++ b/runtime/js/40_testing.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_tty.js b/runtime/js/40_tty.js
index e76d7d90e..1abed5f25 100644
--- a/runtime/js/40_tty.js
+++ b/runtime/js/40_tty.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/40_write_file.js b/runtime/js/40_write_file.js
index bb3f91789..8eac953d4 100644
--- a/runtime/js/40_write_file.js
+++ b/runtime/js/40_write_file.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
const { stat, statSync, chmod, chmodSync } = window.__bootstrap.fs;
diff --git a/runtime/js/41_prompt.js b/runtime/js/41_prompt.js
index e941461de..3dc9f4a40 100644
--- a/runtime/js/41_prompt.js
+++ b/runtime/js/41_prompt.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
const { stdin } = window.__bootstrap.files;
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js
index 029423ee1..b19f6d575 100644
--- a/runtime/js/90_deno_ns.js
+++ b/runtime/js/90_deno_ns.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
"use strict";
((window) => {
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js
index 5a2d2bc3f..190ff24da 100644
--- a/runtime/js/99_main.js
+++ b/runtime/js/99_main.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Removes the `__proto__` for security reasons. This intentionally makes
// Deno non compliant with ECMA-262 Annex B.2.2.1
//
diff --git a/runtime/lib.rs b/runtime/lib.rs
index 58de3725b..fef3956ea 100644
--- a/runtime/lib.rs
+++ b/runtime/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
pub use deno_broadcast_channel;
pub use deno_console;
diff --git a/runtime/ops/fs.rs b/runtime/ops/fs.rs
index 4c29898d7..bc84cffb1 100644
--- a/runtime/ops/fs.rs
+++ b/runtime/ops/fs.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
// Some deserializer fields are only used on Unix and Windows build fails without it
use super::io::StdFileResource;
use super::utils::into_string;
diff --git a/runtime/ops/fs_events.rs b/runtime/ops/fs_events.rs
index 26ad255fd..89ded2731 100644
--- a/runtime/ops/fs_events.rs
+++ b/runtime/ops/fs_events.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use crate::permissions::Permissions;
use deno_core::error::AnyError;
diff --git a/runtime/ops/io.rs b/runtime/ops/io.rs
index 89da5f508..61f1a2578 100644
--- a/runtime/ops/io.rs
+++ b/runtime/ops/io.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::not_supported;
use deno_core::error::resource_unavailable;
diff --git a/runtime/ops/mod.rs b/runtime/ops/mod.rs
index f2f1bdfad..750dfe0f2 100644
--- a/runtime/ops/mod.rs
+++ b/runtime/ops/mod.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
pub mod fs;
pub mod fs_events;
diff --git a/runtime/ops/os.rs b/runtime/ops/os.rs
index bbc571cc6..877dbce21 100644
--- a/runtime/ops/os.rs
+++ b/runtime/ops/os.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use super::utils::into_string;
use crate::permissions::Permissions;
diff --git a/runtime/ops/permissions.rs b/runtime/ops/permissions.rs
index d8005a743..da82f1fd0 100644
--- a/runtime/ops/permissions.rs
+++ b/runtime/ops/permissions.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use crate::permissions::Permissions;
use deno_core::error::custom_error;
diff --git a/runtime/ops/process.rs b/runtime/ops/process.rs
index 0324cb599..eee266986 100644
--- a/runtime/ops/process.rs
+++ b/runtime/ops/process.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use super::io::ChildStderrResource;
use super::io::ChildStdinResource;
diff --git a/runtime/ops/runtime.rs b/runtime/ops/runtime.rs
index 6006716ef..19228af78 100644
--- a/runtime/ops/runtime.rs
+++ b/runtime/ops/runtime.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use crate::permissions::Permissions;
use deno_core::anyhow::Context;
diff --git a/runtime/ops/signal.rs b/runtime/ops/signal.rs
index f260c611c..7f897c048 100644
--- a/runtime/ops/signal.rs
+++ b/runtime/ops/signal.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
#[cfg(not(unix))]
use deno_core::error::generic_error;
#[cfg(not(target_os = "windows"))]
diff --git a/runtime/ops/tty.rs b/runtime/ops/tty.rs
index 8295af1c7..ee6b112bc 100644
--- a/runtime/ops/tty.rs
+++ b/runtime/ops/tty.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use super::io::StdFileResource;
use deno_core::error::bad_resource_id;
diff --git a/runtime/ops/utils.rs b/runtime/ops/utils.rs
index 5cbbde00a..d950ae9ab 100644
--- a/runtime/ops/utils.rs
+++ b/runtime/ops/utils.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use deno_core::error::custom_error;
use deno_core::error::AnyError;
diff --git a/runtime/ops/web_worker.rs b/runtime/ops/web_worker.rs
index 14ebb8d6e..e32f2371d 100644
--- a/runtime/ops/web_worker.rs
+++ b/runtime/ops/web_worker.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
mod sync_fetch;
diff --git a/runtime/ops/web_worker/sync_fetch.rs b/runtime/ops/web_worker/sync_fetch.rs
index fafe62047..9f146b67e 100644
--- a/runtime/ops/web_worker/sync_fetch.rs
+++ b/runtime/ops/web_worker/sync_fetch.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use crate::web_worker::WebWorkerInternalHandle;
use crate::web_worker::WebWorkerType;
diff --git a/runtime/ops/worker_host.rs b/runtime/ops/worker_host.rs
index f290b3833..c241e9a54 100644
--- a/runtime/ops/worker_host.rs
+++ b/runtime/ops/worker_host.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use crate::ops::TestingFeaturesEnabled;
use crate::permissions::create_child_permissions;
diff --git a/runtime/permissions.rs b/runtime/permissions.rs
index 1b0d8b914..d4e1ec4f6 100644
--- a/runtime/permissions.rs
+++ b/runtime/permissions.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use crate::colors;
use crate::fs_util::resolve_from_cwd;
diff --git a/runtime/tokio_util.rs b/runtime/tokio_util.rs
index 695b94802..25693ae55 100644
--- a/runtime/tokio_util.rs
+++ b/runtime/tokio_util.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
pub fn create_basic_runtime() -> tokio::runtime::Runtime {
tokio::runtime::Builder::new_current_thread()
diff --git a/runtime/web_worker.rs b/runtime/web_worker.rs
index e4c727977..130b13dc0 100644
--- a/runtime/web_worker.rs
+++ b/runtime/web_worker.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use crate::colors;
use crate::inspector_server::InspectorServer;
use crate::js;
diff --git a/runtime/worker.rs b/runtime/worker.rs
index 9029ab967..ad31cacc6 100644
--- a/runtime/worker.rs
+++ b/runtime/worker.rs
@@ -1,4 +1,4 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
use crate::inspector_server::InspectorServer;
use crate::js;