summaryrefslogtreecommitdiff
path: root/core/libdeno
diff options
context:
space:
mode:
authorRy Dahl <ry@tinyclouds.org>2020-01-02 15:13:47 -0500
committerGitHub <noreply@github.com>2020-01-02 15:13:47 -0500
commitbfab4ed0dfa5e2034005133a257201c934bc3a80 (patch)
treecd53471ad241770d3cd9a9da6246463d92e0ebeb /core/libdeno
parentb0761138e5d2486c241ab8fdfa67fe2c2a0b621b (diff)
Happy new year! (#3578)
Diffstat (limited to 'core/libdeno')
-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
13 files changed, 13 insertions, 13 deletions
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_