summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/msg.rs1
-rw-r--r--src/permissions.rs1
-rw-r--r--src/tokio_write.rs1
-rw-r--r--src/workers.rs2
4 files changed, 4 insertions, 1 deletions
diff --git a/src/msg.rs b/src/msg.rs
index 9a146a5d3..74027d3d6 100644
--- a/src/msg.rs
+++ b/src/msg.rs
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
#![allow(unused_imports)]
#![allow(dead_code)]
#![cfg_attr(
diff --git a/src/permissions.rs b/src/permissions.rs
index 15415c347..fc14bea76 100644
--- a/src/permissions.rs
+++ b/src/permissions.rs
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use atty;
use crate::flags::DenoFlags;
diff --git a/src/tokio_write.rs b/src/tokio_write.rs
index 68e0d2261..945de375d 100644
--- a/src/tokio_write.rs
+++ b/src/tokio_write.rs
@@ -1,3 +1,4 @@
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
// TODO Submit this file upstream into tokio-io/src/io/write.rs
use std::io;
use std::mem;
diff --git a/src/workers.rs b/src/workers.rs
index 0cc2225b6..279cc3cc9 100644
--- a/src/workers.rs
+++ b/src/workers.rs
@@ -1,4 +1,4 @@
-// Copyright 2018 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
use crate::isolate::Buf;
use crate::isolate::Isolate;
use crate::isolate::IsolateState;