diff options
Diffstat (limited to 'cli/ops')
-rw-r--r-- | cli/ops/compiler.rs | 2 | ||||
-rw-r--r-- | cli/ops/dispatch_json.rs | 2 | ||||
-rw-r--r-- | cli/ops/dispatch_minimal.rs | 2 | ||||
-rw-r--r-- | cli/ops/errors.rs | 2 | ||||
-rw-r--r-- | cli/ops/fetch.rs | 2 | ||||
-rw-r--r-- | cli/ops/files.rs | 2 | ||||
-rw-r--r-- | cli/ops/fs.rs | 2 | ||||
-rw-r--r-- | cli/ops/mod.rs | 2 | ||||
-rw-r--r-- | cli/ops/net.rs | 2 | ||||
-rw-r--r-- | cli/ops/os.rs | 2 | ||||
-rw-r--r-- | cli/ops/permissions.rs | 2 | ||||
-rw-r--r-- | cli/ops/process.rs | 2 | ||||
-rw-r--r-- | cli/ops/random.rs | 2 | ||||
-rw-r--r-- | cli/ops/repl.rs | 2 | ||||
-rw-r--r-- | cli/ops/resources.rs | 2 | ||||
-rw-r--r-- | cli/ops/timers.rs | 2 | ||||
-rw-r--r-- | cli/ops/tls.rs | 2 | ||||
-rw-r--r-- | cli/ops/workers.rs | 2 |
18 files changed, 18 insertions, 18 deletions
diff --git a/cli/ops/compiler.rs b/cli/ops/compiler.rs index b45f6d937..8bc42a92a 100644 --- a/cli/ops/compiler.rs +++ b/cli/ops/compiler.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{Deserialize, JsonOp, Value}; use crate::futures::future::try_join_all; use crate::futures::future::FutureExt; diff --git a/cli/ops/dispatch_json.rs b/cli/ops/dispatch_json.rs index 38dc7932e..1636aa44c 100644 --- a/cli/ops/dispatch_json.rs +++ b/cli/ops/dispatch_json.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use deno::*; use futures::future::FutureExt; use futures::task::SpawnExt; diff --git a/cli/ops/dispatch_minimal.rs b/cli/ops/dispatch_minimal.rs index 13738ba56..22d6697e5 100644 --- a/cli/ops/dispatch_minimal.rs +++ b/cli/ops/dispatch_minimal.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. // Do not add flatbuffer dependencies to this module. //! Connects to js/dispatch_minimal.ts sendAsyncMinimal This acts as a faster //! alternative to flatbuffers using a very simple list of int32s to lay out diff --git a/cli/ops/errors.rs b/cli/ops/errors.rs index 4ef912916..2c40aa66c 100644 --- a/cli/ops/errors.rs +++ b/cli/ops/errors.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{Deserialize, JsonOp, Value}; use crate::fmt_errors::JSError; use crate::ops::json_op; diff --git a/cli/ops/fetch.rs b/cli/ops/fetch.rs index 2787b5b7f..c1bc11973 100644 --- a/cli/ops/fetch.rs +++ b/cli/ops/fetch.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{Deserialize, JsonOp, Value}; use super::io::StreamResource; use crate::http_util::{get_client, HttpBody}; diff --git a/cli/ops/files.rs b/cli/ops/files.rs index 6f015329b..d4ba04ac1 100644 --- a/cli/ops/files.rs +++ b/cli/ops/files.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{Deserialize, JsonOp, Value}; use super::io::StreamResource; use crate::deno_error::bad_resource; diff --git a/cli/ops/fs.rs b/cli/ops/fs.rs index c847931ab..dc9ed1b10 100644 --- a/cli/ops/fs.rs +++ b/cli/ops/fs.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. // Some deserializer fields are only used on Unix and Windows build fails without it use super::dispatch_json::{blocking_json, Deserialize, JsonOp, Value}; use crate::deno_error::DenoError; diff --git a/cli/ops/mod.rs b/cli/ops/mod.rs index 28bf7e217..f93c5a060 100644 --- a/cli/ops/mod.rs +++ b/cli/ops/mod.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. mod dispatch_json; mod dispatch_minimal; diff --git a/cli/ops/net.rs b/cli/ops/net.rs index a3a1e665e..01fb65b1f 100644 --- a/cli/ops/net.rs +++ b/cli/ops/net.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{Deserialize, JsonOp, Value}; use super::io::StreamResource; use crate::deno_error::bad_resource; diff --git a/cli/ops/os.rs b/cli/ops/os.rs index c42827b3f..b5062f109 100644 --- a/cli/ops/os.rs +++ b/cli/ops/os.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{Deserialize, JsonOp, Value}; use crate::colors; use crate::fs as deno_fs; diff --git a/cli/ops/permissions.rs b/cli/ops/permissions.rs index f513f2fab..6ecd7cb10 100644 --- a/cli/ops/permissions.rs +++ b/cli/ops/permissions.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{Deserialize, JsonOp, Value}; use crate::deno_error::type_error; use crate::ops::json_op; diff --git a/cli/ops/process.rs b/cli/ops/process.rs index 40a9877ac..92474cc4f 100644 --- a/cli/ops/process.rs +++ b/cli/ops/process.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{Deserialize, JsonOp, Value}; use super::io::StreamResource; use crate::deno_error::bad_resource; diff --git a/cli/ops/random.rs b/cli/ops/random.rs index 614188d86..95dbccf80 100644 --- a/cli/ops/random.rs +++ b/cli/ops/random.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{JsonOp, Value}; use crate::ops::json_op; use crate::state::ThreadSafeState; diff --git a/cli/ops/repl.rs b/cli/ops/repl.rs index 5919ea586..fd06a5481 100644 --- a/cli/ops/repl.rs +++ b/cli/ops/repl.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{blocking_json, Deserialize, JsonOp, Value}; use crate::deno_error::bad_resource; use crate::ops::json_op; diff --git a/cli/ops/resources.rs b/cli/ops/resources.rs index c35e9762c..cd7b98aea 100644 --- a/cli/ops/resources.rs +++ b/cli/ops/resources.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{JsonOp, Value}; use crate::ops::json_op; use crate::state::ThreadSafeState; diff --git a/cli/ops/timers.rs b/cli/ops/timers.rs index 21d1eda24..982ea9cac 100644 --- a/cli/ops/timers.rs +++ b/cli/ops/timers.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{Deserialize, JsonOp, Value}; use crate::ops::json_op; use crate::state::ThreadSafeState; diff --git a/cli/ops/tls.rs b/cli/ops/tls.rs index e1897a86e..a2975dcb0 100644 --- a/cli/ops/tls.rs +++ b/cli/ops/tls.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{Deserialize, JsonOp, Value}; use super::io::StreamResource; use crate::deno_error::bad_resource; diff --git a/cli/ops/workers.rs b/cli/ops/workers.rs index 131283614..48b8deb15 100644 --- a/cli/ops/workers.rs +++ b/cli/ops/workers.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. use super::dispatch_json::{Deserialize, JsonOp, Value}; use crate::deno_error::bad_resource; use crate::deno_error::js_check; |