summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/Cargo.toml2
-rw-r--r--core/build.rs2
-rw-r--r--core/flags.rs2
-rw-r--r--core/js_errors.rs2
-rw-r--r--core/lib.rs2
-rw-r--r--core/libdeno.rs2
-rw-r--r--core/libdeno/BUILD.gn2
-rw-r--r--core/libdeno/api.cc2
-rw-r--r--core/libdeno/binding.cc2
-rw-r--r--core/libdeno/buffer.h2
-rw-r--r--core/libdeno/deno.h2
-rw-r--r--core/libdeno/exceptions.cc2
-rw-r--r--core/libdeno/exceptions.h2
-rw-r--r--core/libdeno/internal.h2
-rw-r--r--core/libdeno/libdeno_test.cc2
-rw-r--r--core/libdeno/libdeno_test.js2
-rw-r--r--core/libdeno/modules_test.cc2
-rw-r--r--core/libdeno/test.cc2
-rw-r--r--core/libdeno/test.h2
-rw-r--r--core/ops.rs2
-rw-r--r--core/resources.rs2
-rw-r--r--core/shared_queue.js2
-rw-r--r--core/shared_queue_test.js2
23 files changed, 23 insertions, 23 deletions
diff --git a/core/Cargo.toml b/core/Cargo.toml
index 45f316a58..269024ba8 100644
--- a/core/Cargo.toml
+++ b/core/Cargo.toml
@@ -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.
[package]
name = "deno"
diff --git a/core/build.rs b/core/build.rs
index 64b5ca47b..9500c7654 100644
--- a/core/build.rs
+++ b/core/build.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.
// Run "cargo build -vv" if you want to see gn output.
fn main() {
diff --git a/core/flags.rs b/core/flags.rs
index e1429ab9a..380adbfa2 100644
--- a/core/flags.rs
+++ b/core/flags.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.
//! This module wraps libdeno::deno_set_v8_flags
use crate::libdeno::deno_set_v8_flags;
use libc::c_char;
diff --git a/core/js_errors.rs b/core/js_errors.rs
index 3656242e0..f8707b0ae 100644
--- a/core/js_errors.rs
+++ b/core/js_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.
// Note that source_map_mappings requires 0-indexed line and column numbers but
// V8 Exceptions are 1-indexed.
diff --git a/core/lib.rs b/core/lib.rs
index f1becb5d7..5d37fe0ae 100644
--- a/core/lib.rs
+++ b/core/lib.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.
#[macro_use]
extern crate log;
extern crate futures;
diff --git a/core/libdeno.rs b/core/libdeno.rs
index d83c11196..8e09b7d24 100644
--- a/core/libdeno.rs
+++ b/core/libdeno.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 libc::c_char;
use libc::c_int;
diff --git a/core/libdeno/BUILD.gn b/core/libdeno/BUILD.gn
index d2322c678..06e217c73 100644
--- a/core/libdeno/BUILD.gn
+++ b/core/libdeno/BUILD.gn
@@ -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.
import("//v8/gni/v8.gni")
group("default") {
diff --git a/core/libdeno/api.cc b/core/libdeno/api.cc
index 08e8a6de9..149709819 100644
--- a/core/libdeno/api.cc
+++ b/core/libdeno/api.cc
@@ -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.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/core/libdeno/binding.cc b/core/libdeno/binding.cc
index 830edcf5a..4785db3d0 100644
--- a/core/libdeno/binding.cc
+++ b/core/libdeno/binding.cc
@@ -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.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/core/libdeno/buffer.h b/core/libdeno/buffer.h
index a0e75f7be..4f641f270 100644
--- a/core/libdeno/buffer.h
+++ b/core/libdeno/buffer.h
@@ -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.
#ifndef BUFFER_H_
#define BUFFER_H_
diff --git a/core/libdeno/deno.h b/core/libdeno/deno.h
index fd48abc5a..1beabf5b4 100644
--- a/core/libdeno/deno.h
+++ b/core/libdeno/deno.h
@@ -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.
#ifndef DENO_H_
#define DENO_H_
diff --git a/core/libdeno/exceptions.cc b/core/libdeno/exceptions.cc
index 64328e94d..7f622da80 100644
--- a/core/libdeno/exceptions.cc
+++ b/core/libdeno/exceptions.cc
@@ -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.
#include "exceptions.h"
#include <string>
#include "internal.h"
diff --git a/core/libdeno/exceptions.h b/core/libdeno/exceptions.h
index d8852f544..155dc8aad 100644
--- a/core/libdeno/exceptions.h
+++ b/core/libdeno/exceptions.h
@@ -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.
#ifndef EXCEPTIONS_H_
#define EXCEPTIONS_H_
diff --git a/core/libdeno/internal.h b/core/libdeno/internal.h
index 7f29f4d81..9669473a1 100644
--- a/core/libdeno/internal.h
+++ b/core/libdeno/internal.h
@@ -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.
#ifndef INTERNAL_H_
#define INTERNAL_H_
diff --git a/core/libdeno/libdeno_test.cc b/core/libdeno/libdeno_test.cc
index a72793944..1b21eb7b1 100644
--- a/core/libdeno/libdeno_test.cc
+++ b/core/libdeno/libdeno_test.cc
@@ -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.
#include "test.h"
TEST(LibDenoTest, InitializesCorrectly) {
diff --git a/core/libdeno/libdeno_test.js b/core/libdeno/libdeno_test.js
index 779762cfd..5477a87a0 100644
--- a/core/libdeno/libdeno_test.js
+++ b/core/libdeno/libdeno_test.js
@@ -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.
// A simple runtime that doesn't involve typescript or protobufs to test
// libdeno. Invoked by libdeno_test.cc
diff --git a/core/libdeno/modules_test.cc b/core/libdeno/modules_test.cc
index e11231528..ee6a93112 100644
--- a/core/libdeno/modules_test.cc
+++ b/core/libdeno/modules_test.cc
@@ -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.
#include "test.h"
static int exec_count = 0;
diff --git a/core/libdeno/test.cc b/core/libdeno/test.cc
index 0bfe374ef..994d43d21 100644
--- a/core/libdeno/test.cc
+++ b/core/libdeno/test.cc
@@ -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.
#include "test.h"
#include <fstream>
#include <string>
diff --git a/core/libdeno/test.h b/core/libdeno/test.h
index 4ae83f810..4d7b73ab3 100644
--- a/core/libdeno/test.h
+++ b/core/libdeno/test.h
@@ -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.
#ifndef TEST_H_
#define TEST_H_
diff --git a/core/ops.rs b/core/ops.rs
index c840ed979..227019c02 100644
--- a/core/ops.rs
+++ b/core/ops.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.
pub use crate::libdeno::OpId;
use crate::PinnedBuf;
use futures::Future;
diff --git a/core/resources.rs b/core/resources.rs
index 216f5c8df..84722f660 100644
--- a/core/resources.rs
+++ b/core/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.
// Think of Resources as File Descriptors. They are integers that are allocated by
// the privileged side of Deno to refer to various rust objects that need to be
diff --git a/core/shared_queue.js b/core/shared_queue.js
index 9885e5dc4..aeffb5c93 100644
--- a/core/shared_queue.js
+++ b/core/shared_queue.js
@@ -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.
/*
SharedQueue Binary Layout
+-------------------------------+-------------------------------+
diff --git a/core/shared_queue_test.js b/core/shared_queue_test.js
index ff9bb4dd8..37bc9a28a 100644
--- a/core/shared_queue_test.js
+++ b/core/shared_queue_test.js
@@ -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.
function assert(cond) {
if (!cond) {