diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/Cargo.toml | 2 | ||||
-rw-r--r-- | core/async_cancel.rs | 2 | ||||
-rw-r--r-- | core/async_cell.rs | 2 | ||||
-rw-r--r-- | core/bindings.rs | 2 | ||||
-rw-r--r-- | core/core.js | 2 | ||||
-rw-r--r-- | core/core_test.js | 2 | ||||
-rw-r--r-- | core/encode_decode_test.js | 2 | ||||
-rw-r--r-- | core/error.js | 2 | ||||
-rw-r--r-- | core/error.rs | 2 | ||||
-rw-r--r-- | core/examples/hello_world.rs | 2 | ||||
-rw-r--r-- | core/examples/http_bench_bin_ops.js | 2 | ||||
-rw-r--r-- | core/examples/http_bench_bin_ops.rs | 2 | ||||
-rw-r--r-- | core/examples/http_bench_json_ops.js | 2 | ||||
-rw-r--r-- | core/examples/http_bench_json_ops.rs | 2 | ||||
-rw-r--r-- | core/flags.rs | 2 | ||||
-rw-r--r-- | core/gotham_state.rs | 2 | ||||
-rw-r--r-- | core/lib.rs | 2 | ||||
-rw-r--r-- | core/module_specifier.rs | 2 | ||||
-rw-r--r-- | core/modules.rs | 2 | ||||
-rw-r--r-- | core/normalize_path.rs | 2 | ||||
-rw-r--r-- | core/ops.rs | 2 | ||||
-rw-r--r-- | core/plugin_api.rs | 2 | ||||
-rw-r--r-- | core/resources.rs | 2 | ||||
-rw-r--r-- | core/runtime.rs | 2 | ||||
-rw-r--r-- | core/shared_queue.rs | 2 | ||||
-rw-r--r-- | core/zero_copy_buf.rs | 2 |
26 files changed, 26 insertions, 26 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml index 1c7d32d13..096293020 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,4 +1,4 @@ -# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. [package] name = "deno_core" version = "0.75.0" diff --git a/core/async_cancel.rs b/core/async_cancel.rs index 51ed4c647..5784f41dd 100644 --- a/core/async_cancel.rs +++ b/core/async_cancel.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::RcLike; use futures::future::FusedFuture; diff --git a/core/async_cell.rs b/core/async_cell.rs index cd6c51682..602486df3 100644 --- a/core/async_cell.rs +++ b/core/async_cell.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 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 eb46e6ef2..20725c0fc 100644 --- a/core/bindings.rs +++ b/core/bindings.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::error::AnyError; use crate::runtime::JsRuntimeState; diff --git a/core/core.js b/core/core.js index ac2980fad..5a15aff8c 100644 --- a/core/core.js +++ b/core/core.js @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. /* SharedQueue Binary Layout +-------------------------------+-------------------------------+ diff --git a/core/core_test.js b/core/core_test.js index 28bc7d2bf..58dff73ac 100644 --- a/core/core_test.js +++ b/core/core_test.js @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. function assert(cond) { if (!cond) { diff --git a/core/encode_decode_test.js b/core/encode_decode_test.js index b8a142ac5..dcdb82d8e 100644 --- a/core/encode_decode_test.js +++ b/core/encode_decode_test.js @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. function assert(cond) { if (!cond) { throw Error("assert"); diff --git a/core/error.js b/core/error.js index 708b1fd4a..300599666 100644 --- a/core/error.js +++ b/core/error.js @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. ((window) => { // Some of the code here is adapted directly from V8 and licensed under a BSD diff --git a/core/error.rs b/core/error.rs index 501b8dc52..db5c8afd6 100644 --- a/core/error.rs +++ b/core/error.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. pub use anyhow::anyhow; pub use anyhow::bail; diff --git a/core/examples/hello_world.rs b/core/examples/hello_world.rs index 07391309d..1f696a817 100644 --- a/core/examples/hello_world.rs +++ b/core/examples/hello_world.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 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_bin_ops.js b/core/examples/http_bench_bin_ops.js index a90be70c0..f20366494 100644 --- a/core/examples/http_bench_bin_ops.js +++ b/core/examples/http_bench_bin_ops.js @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 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_bin_ops.rs b/core/examples/http_bench_bin_ops.rs index 32529652b..cde25800c 100644 --- a/core/examples/http_bench_bin_ops.rs +++ b/core/examples/http_bench_bin_ops.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. #[macro_use] extern crate log; diff --git a/core/examples/http_bench_json_ops.js b/core/examples/http_bench_json_ops.js index aba7da432..80c5a6115 100644 --- a/core/examples/http_bench_json_ops.js +++ b/core/examples/http_bench_json_ops.js @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 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 8cf4061cc..4fd25d6b8 100644 --- a/core/examples/http_bench_json_ops.rs +++ b/core/examples/http_bench_json_ops.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. #[macro_use] extern crate log; diff --git a/core/flags.rs b/core/flags.rs index b69abab6f..af64df64e 100644 --- a/core/flags.rs +++ b/core/flags.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use rusty_v8 as v8; /// Pass the command line arguments to v8. diff --git a/core/gotham_state.rs b/core/gotham_state.rs index e42664223..04213f977 100644 --- a/core/gotham_state.rs +++ b/core/gotham_state.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 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/lib.rs b/core/lib.rs index 6cecd4d75..6a18be3f4 100644 --- a/core/lib.rs +++ b/core/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. #[macro_use] extern crate lazy_static; diff --git a/core/module_specifier.rs b/core/module_specifier.rs index 29edc8771..e0e8719ea 100644 --- a/core/module_specifier.rs +++ b/core/module_specifier.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 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 546f2464f..815db2fb9 100644 --- a/core/modules.rs +++ b/core/modules.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use rusty_v8 as v8; diff --git a/core/normalize_path.rs b/core/normalize_path.rs index e444af991..6099696ec 100644 --- a/core/normalize_path.rs +++ b/core/normalize_path.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 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 d29159e9c..d596a1182 100644 --- a/core/ops.rs +++ b/core/ops.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::error::bad_resource_id; use crate::error::type_error; diff --git a/core/plugin_api.rs b/core/plugin_api.rs index d57a5b3b5..98eb3f2ca 100644 --- a/core/plugin_api.rs +++ b/core/plugin_api.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. // This file defines the public interface for dynamically loaded plugins. diff --git a/core/resources.rs b/core/resources.rs index da3b634fc..dc372884b 100644 --- a/core/resources.rs +++ b/core/resources.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 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 700d378b1..7b703e3d4 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use rusty_v8 as v8; diff --git a/core/shared_queue.rs b/core/shared_queue.rs index 715fb4395..69d355e95 100644 --- a/core/shared_queue.rs +++ b/core/shared_queue.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. /* SharedQueue Binary Layout +-------------------------------+-------------------------------+ diff --git a/core/zero_copy_buf.rs b/core/zero_copy_buf.rs index 848f5ac2e..96baee1ec 100644 --- a/core/zero_copy_buf.rs +++ b/core/zero_copy_buf.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. use crate::bindings; use rusty_v8 as v8; |