summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-01-01 19:58:40 -0500
committerBert Belder <bertbelder@gmail.com>2019-01-02 02:37:08 +0100
commit2c477dd7cb37d37f4c8bcf7fd159c08c4cfa1ac1 (patch)
tree297808e92eb2d3be1527f89adc182b66c547d320 /src
parent320577c131c8058ba0065f26119ce1ce18bc23d2 (diff)
Happy new year!
Diffstat (limited to 'src')
-rw-r--r--src/deno_dir.rs2
-rw-r--r--src/eager_unix.rs2
-rw-r--r--src/errors.rs2
-rw-r--r--src/flags.rs2
-rw-r--r--src/fs.rs2
-rw-r--r--src/http_body.rs2
-rw-r--r--src/http_util.rs2
-rw-r--r--src/isolate.rs2
-rw-r--r--src/js_errors.rs2
-rw-r--r--src/libdeno.rs2
-rw-r--r--src/main.rs2
-rw-r--r--src/msg_util.rs2
-rw-r--r--src/ops.rs2
-rw-r--r--src/repl.rs2
-rw-r--r--src/resources.rs2
-rw-r--r--src/snapshot.rs2
-rw-r--r--src/tokio_util.rs2
-rw-r--r--src/version.rs2
18 files changed, 18 insertions, 18 deletions
diff --git a/src/deno_dir.rs b/src/deno_dir.rs
index 1af5daa3f..5ae1c66d9 100644
--- a/src/deno_dir.rs
+++ b/src/deno_dir.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 dirs;
use errors;
use errors::DenoError;
diff --git a/src/eager_unix.rs b/src/eager_unix.rs
index 85f4106c4..1c0f5bd33 100644
--- a/src/eager_unix.rs
+++ b/src/eager_unix.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 resources::{EagerAccept, EagerRead, EagerWrite, Resource};
use tokio_util;
diff --git a/src/errors.rs b/src/errors.rs
index ec96c96a6..f16ba6299 100644
--- a/src/errors.rs
+++ b/src/errors.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 hyper;
pub use msg::ErrorKind;
use std;
diff --git a/src/flags.rs b/src/flags.rs
index 0740e6c46..befb15ab8 100644
--- a/src/flags.rs
+++ b/src/flags.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 getopts;
use getopts::Options;
use libc::c_int;
diff --git a/src/fs.rs b/src/fs.rs
index 228b4431e..1b860b057 100644
--- a/src/fs.rs
+++ b/src/fs.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 std;
use std::fs::{create_dir, DirBuilder, File, OpenOptions};
use std::io::ErrorKind;
diff --git a/src/http_body.rs b/src/http_body.rs
index e75e3ec2d..235463ff1 100644
--- a/src/http_body.rs
+++ b/src/http_body.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 futures::Async;
use futures::Poll;
diff --git a/src/http_util.rs b/src/http_util.rs
index 8c289911e..3d8ae6791 100644
--- a/src/http_util.rs
+++ b/src/http_util.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 errors;
use errors::{DenoError, DenoResult};
use tokio_util;
diff --git a/src/isolate.rs b/src/isolate.rs
index 4d5b92d58..b70e47912 100644
--- a/src/isolate.rs
+++ b/src/isolate.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.
// Do not use FlatBuffers in this module.
// TODO Currently this module uses Tokio, but it would be nice if they were
diff --git a/src/js_errors.rs b/src/js_errors.rs
index 7b4e14321..167877335 100644
--- a/src/js_errors.rs
+++ b/src/js_errors.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.
// Note that source_map_mappings requires 0-indexed line and column numbers but
// V8 Exceptions are 1-indexed.
diff --git a/src/libdeno.rs b/src/libdeno.rs
index cce6c4e60..bdc2c54c1 100644
--- a/src/libdeno.rs
+++ b/src/libdeno.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 libc::c_char;
use libc::c_int;
use libc::c_void;
diff --git a/src/main.rs b/src/main.rs
index 6c65a3858..364a9cf7e 100644
--- a/src/main.rs
+++ b/src/main.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.
extern crate dirs;
extern crate flatbuffers;
extern crate getopts;
diff --git a/src/msg_util.rs b/src/msg_util.rs
index ae5e2dc51..4517c068f 100644
--- a/src/msg_util.rs
+++ b/src/msg_util.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.
// Helpers for serialization.
use errors;
use errors::DenoResult;
diff --git a/src/ops.rs b/src/ops.rs
index 1ec46e445..5b2598728 100644
--- a/src/ops.rs
+++ b/src/ops.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 errors;
use errors::{DenoError, DenoResult, ErrorKind};
use fs as deno_fs;
diff --git a/src/repl.rs b/src/repl.rs
index 6dcaf9cf7..835e6dbff 100644
--- a/src/repl.rs
+++ b/src/repl.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.
extern crate rustyline;
use rustyline::error::ReadlineError::Interrupted;
diff --git a/src/resources.rs b/src/resources.rs
index dd1ad0056..f1497f214 100644
--- a/src/resources.rs
+++ b/src/resources.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.
// Think of Resources as File Descriptors. They are integers that are allocated
// by the privileged side of Deno to refer to various resources. The simplest
diff --git a/src/snapshot.rs b/src/snapshot.rs
index 264395093..e9457850e 100644
--- a/src/snapshot.rs
+++ b/src/snapshot.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 libdeno::deno_buf;
pub fn deno_snapshot() -> deno_buf {
diff --git a/src/tokio_util.rs b/src/tokio_util.rs
index 6d295453f..2780822f1 100644
--- a/src/tokio_util.rs
+++ b/src/tokio_util.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 resources::Resource;
use futures;
diff --git a/src/version.rs b/src/version.rs
index 0d4c7b953..0f328874f 100644
--- a/src/version.rs
+++ b/src/version.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 libdeno;
use std::ffi::CStr;