summaryrefslogtreecommitdiff
path: root/libdeno
diff options
context:
space:
mode:
Diffstat (limited to 'libdeno')
-rw-r--r--libdeno/BUILD.gn2
-rw-r--r--libdeno/api.cc2
-rw-r--r--libdeno/binding.cc2
-rw-r--r--libdeno/deno.h2
-rw-r--r--libdeno/file_util.cc2
-rw-r--r--libdeno/file_util.h2
-rw-r--r--libdeno/file_util_test.cc2
-rw-r--r--libdeno/internal.h2
-rw-r--r--libdeno/libdeno_test.cc2
-rw-r--r--libdeno/libdeno_test.js2
-rw-r--r--libdeno/snapshot_creator.cc2
-rw-r--r--libdeno/test.cc2
-rw-r--r--libdeno/test.h2
13 files changed, 13 insertions, 13 deletions
diff --git a/libdeno/BUILD.gn b/libdeno/BUILD.gn
index 39a024c41..695f22a7c 100644
--- a/libdeno/BUILD.gn
+++ b/libdeno/BUILD.gn
@@ -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.
import("//third_party/v8/gni/v8.gni")
import("./deno.gni")
diff --git a/libdeno/api.cc b/libdeno/api.cc
index 5b6155118..ebdbea643 100644
--- a/libdeno/api.cc
+++ b/libdeno/api.cc
@@ -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.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/libdeno/binding.cc b/libdeno/binding.cc
index 000529304..495ed28eb 100644
--- a/libdeno/binding.cc
+++ b/libdeno/binding.cc
@@ -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.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/libdeno/deno.h b/libdeno/deno.h
index d80043780..7c8e94244 100644
--- a/libdeno/deno.h
+++ b/libdeno/deno.h
@@ -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.
#ifndef DENO_H_
#define DENO_H_
#include <stddef.h>
diff --git a/libdeno/file_util.cc b/libdeno/file_util.cc
index 8df0dafea..256f4f257 100644
--- a/libdeno/file_util.cc
+++ b/libdeno/file_util.cc
@@ -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.
#include <inttypes.h>
#include <limits.h>
#include <stdint.h>
diff --git a/libdeno/file_util.h b/libdeno/file_util.h
index 63ecef907..0177f2c94 100644
--- a/libdeno/file_util.h
+++ b/libdeno/file_util.h
@@ -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.
#ifndef FILE_UTIL_H_
#define FILE_UTIL_H_
diff --git a/libdeno/file_util_test.cc b/libdeno/file_util_test.cc
index ac854c52e..80c878044 100644
--- a/libdeno/file_util_test.cc
+++ b/libdeno/file_util_test.cc
@@ -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.
#include "testing/gtest/include/gtest/gtest.h"
#include "file_util.h"
diff --git a/libdeno/internal.h b/libdeno/internal.h
index 3019bc364..39e578e66 100644
--- a/libdeno/internal.h
+++ b/libdeno/internal.h
@@ -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.
#ifndef INTERNAL_H_
#define INTERNAL_H_
diff --git a/libdeno/libdeno_test.cc b/libdeno/libdeno_test.cc
index 78091be59..18cafb2e8 100644
--- a/libdeno/libdeno_test.cc
+++ b/libdeno/libdeno_test.cc
@@ -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.
#include "test.h"
TEST(LibDenoTest, InitializesCorrectly) {
diff --git a/libdeno/libdeno_test.js b/libdeno/libdeno_test.js
index bb36b02d9..5e1430d9e 100644
--- a/libdeno/libdeno_test.js
+++ b/libdeno/libdeno_test.js
@@ -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.
// A simple runtime that doesn't involve typescript or protobufs to test
// libdeno. Invoked by libdeno_test.cc
diff --git a/libdeno/snapshot_creator.cc b/libdeno/snapshot_creator.cc
index ff18bed02..74fdef836 100644
--- a/libdeno/snapshot_creator.cc
+++ b/libdeno/snapshot_creator.cc
@@ -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.
// Hint: --trace_serializer is a useful debugging flag.
#include <fstream>
#include <iostream>
diff --git a/libdeno/test.cc b/libdeno/test.cc
index f48e916b9..4901ba672 100644
--- a/libdeno/test.cc
+++ b/libdeno/test.cc
@@ -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.
#include "test.h"
#include "file_util.h"
diff --git a/libdeno/test.h b/libdeno/test.h
index 83d92e6fa..91e7119e8 100644
--- a/libdeno/test.h
+++ b/libdeno/test.h
@@ -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.
#ifndef TEST_H
#define TEST_H