summaryrefslogtreecommitdiff
path: root/runtime/js
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/js')
-rw-r--r--runtime/js/00_bootstrap_namespace.js2
-rw-r--r--runtime/js/01_build.js2
-rw-r--r--runtime/js/01_colors.js2
-rw-r--r--runtime/js/01_internals.js2
-rw-r--r--runtime/js/01_version.js2
-rw-r--r--runtime/js/01_web_util.js2
-rw-r--r--runtime/js/02_console.js2
-rw-r--r--runtime/js/06_util.js2
-rw-r--r--runtime/js/10_dispatch_minimal.js2
-rw-r--r--runtime/js/11_timers.js2
-rw-r--r--runtime/js/12_io.js2
-rw-r--r--runtime/js/13_buffer.js2
-rw-r--r--runtime/js/30_files.js2
-rw-r--r--runtime/js/30_fs.js2
-rw-r--r--runtime/js/30_metrics.js2
-rw-r--r--runtime/js/30_net.js2
-rw-r--r--runtime/js/30_os.js2
-rw-r--r--runtime/js/40_compiler_api.js2
-rw-r--r--runtime/js/40_diagnostics.js2
-rw-r--r--runtime/js/40_error_stack.js2
-rw-r--r--runtime/js/40_fs_events.js2
-rw-r--r--runtime/js/40_net_unstable.js2
-rw-r--r--runtime/js/40_performance.js2
-rw-r--r--runtime/js/40_permissions.js2
-rw-r--r--runtime/js/40_plugins.js2
-rw-r--r--runtime/js/40_process.js2
-rw-r--r--runtime/js/40_read_file.js2
-rw-r--r--runtime/js/40_signals.js2
-rw-r--r--runtime/js/40_testing.js2
-rw-r--r--runtime/js/40_tls.js2
-rw-r--r--runtime/js/40_write_file.js2
-rw-r--r--runtime/js/41_prompt.js2
-rw-r--r--runtime/js/90_deno_ns.js2
-rw-r--r--runtime/js/99_main.js2
34 files changed, 34 insertions, 34 deletions
diff --git a/runtime/js/00_bootstrap_namespace.js b/runtime/js/00_bootstrap_namespace.js
index 514cbe3f0..935d059c5 100644
--- a/runtime/js/00_bootstrap_namespace.js
+++ b/runtime/js/00_bootstrap_namespace.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// The only purpose of this file is to set up "globalThis.__bootstrap" namespace,
// that is used by scripts in this directory to reference exports between
diff --git a/runtime/js/01_build.js b/runtime/js/01_build.js
index 7c1dc817e..73fbe70e9 100644
--- a/runtime/js/01_build.js
+++ b/runtime/js/01_build.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const build = {
diff --git a/runtime/js/01_colors.js b/runtime/js/01_colors.js
index 39e4a7a18..7d6320fd3 100644
--- a/runtime/js/01_colors.js
+++ b/runtime/js/01_colors.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
function code(open, close) {
diff --git a/runtime/js/01_internals.js b/runtime/js/01_internals.js
index eee9eeaf7..a8c54ec48 100644
--- a/runtime/js/01_internals.js
+++ b/runtime/js/01_internals.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const internalSymbol = Symbol("Deno.internal");
diff --git a/runtime/js/01_version.js b/runtime/js/01_version.js
index 325e1156f..639db45c4 100644
--- a/runtime/js/01_version.js
+++ b/runtime/js/01_version.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const version = {
diff --git a/runtime/js/01_web_util.js b/runtime/js/01_web_util.js
index a9573a71d..763385e29 100644
--- a/runtime/js/01_web_util.js
+++ b/runtime/js/01_web_util.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const illegalConstructorKey = Symbol("illegalConstructorKey");
diff --git a/runtime/js/02_console.js b/runtime/js/02_console.js
index 11b819850..c6c53977b 100644
--- a/runtime/js/02_console.js
+++ b/runtime/js/02_console.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/06_util.js b/runtime/js/06_util.js
index f4804c519..fb4178d21 100644
--- a/runtime/js/06_util.js
+++ b/runtime/js/06_util.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const { build } = window.__bootstrap.build;
diff --git a/runtime/js/10_dispatch_minimal.js b/runtime/js/10_dispatch_minimal.js
index dceb23e5f..bfb410a98 100644
--- a/runtime/js/10_dispatch_minimal.js
+++ b/runtime/js/10_dispatch_minimal.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/11_timers.js b/runtime/js/11_timers.js
index 166694358..4db73afb6 100644
--- a/runtime/js/11_timers.js
+++ b/runtime/js/11_timers.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const assert = window.__bootstrap.util.assert;
diff --git a/runtime/js/12_io.js b/runtime/js/12_io.js
index 006d51cdd..68b4a7eda 100644
--- a/runtime/js/12_io.js
+++ b/runtime/js/12_io.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// Interfaces 100% copied from Go.
// Documentation liberally lifted from them too.
diff --git a/runtime/js/13_buffer.js b/runtime/js/13_buffer.js
index e06e2138b..59997254b 100644
--- a/runtime/js/13_buffer.js
+++ b/runtime/js/13_buffer.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// This code has been ported almost directly from Go's src/bytes/buffer.go
// Copyright 2009 The Go Authors. All rights reserved. BSD license.
diff --git a/runtime/js/30_files.js b/runtime/js/30_files.js
index 679b184fd..33d929aff 100644
--- a/runtime/js/30_files.js
+++ b/runtime/js/30_files.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/30_fs.js b/runtime/js/30_fs.js
index 33fab01e4..f2a6cf8cb 100644
--- a/runtime/js/30_fs.js
+++ b/runtime/js/30_fs.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/30_metrics.js b/runtime/js/30_metrics.js
index d44a629cb..e9e6603a7 100644
--- a/runtime/js/30_metrics.js
+++ b/runtime/js/30_metrics.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/30_net.js b/runtime/js/30_net.js
index 7009f6f8d..1a5f5116d 100644
--- a/runtime/js/30_net.js
+++ b/runtime/js/30_net.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/30_os.js b/runtime/js/30_os.js
index ebc4e8916..74af82124 100644
--- a/runtime/js/30_os.js
+++ b/runtime/js/30_os.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/40_compiler_api.js b/runtime/js/40_compiler_api.js
index ced4bcb00..0d3600101 100644
--- a/runtime/js/40_compiler_api.js
+++ b/runtime/js/40_compiler_api.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// @ts-check
diff --git a/runtime/js/40_diagnostics.js b/runtime/js/40_diagnostics.js
index 2b7457853..04389e25c 100644
--- a/runtime/js/40_diagnostics.js
+++ b/runtime/js/40_diagnostics.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// Diagnostic provides an abstraction for advice/errors received from a
// compiler, which is strongly influenced by the format of TypeScript
diff --git a/runtime/js/40_error_stack.js b/runtime/js/40_error_stack.js
index da2ee51f3..05c823cec 100644
--- a/runtime/js/40_error_stack.js
+++ b/runtime/js/40_error_stack.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/40_fs_events.js b/runtime/js/40_fs_events.js
index a179e8c1b..ae769c84d 100644
--- a/runtime/js/40_fs_events.js
+++ b/runtime/js/40_fs_events.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/40_net_unstable.js b/runtime/js/40_net_unstable.js
index fcc899a30..cff5f4dea 100644
--- a/runtime/js/40_net_unstable.js
+++ b/runtime/js/40_net_unstable.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const net = window.__bootstrap.net;
diff --git a/runtime/js/40_performance.js b/runtime/js/40_performance.js
index b9c873270..d76c3f73a 100644
--- a/runtime/js/40_performance.js
+++ b/runtime/js/40_performance.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const { opNow } = window.__bootstrap.timers;
diff --git a/runtime/js/40_permissions.js b/runtime/js/40_permissions.js
index 50d471b6a..b41c780aa 100644
--- a/runtime/js/40_permissions.js
+++ b/runtime/js/40_permissions.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/40_plugins.js b/runtime/js/40_plugins.js
index f5aefd400..51a37c9dc 100644
--- a/runtime/js/40_plugins.js
+++ b/runtime/js/40_plugins.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/40_process.js b/runtime/js/40_process.js
index b46a1aead..1ba32ff67 100644
--- a/runtime/js/40_process.js
+++ b/runtime/js/40_process.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/40_read_file.js b/runtime/js/40_read_file.js
index 9a36f335b..95fcfa2b9 100644
--- a/runtime/js/40_read_file.js
+++ b/runtime/js/40_read_file.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const { open, openSync } = window.__bootstrap.files;
diff --git a/runtime/js/40_signals.js b/runtime/js/40_signals.js
index 091afd66a..d90c54767 100644
--- a/runtime/js/40_signals.js
+++ b/runtime/js/40_signals.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/40_testing.js b/runtime/js/40_testing.js
index 082d17fe0..ce11150f4 100644
--- a/runtime/js/40_testing.js
+++ b/runtime/js/40_testing.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/40_tls.js b/runtime/js/40_tls.js
index d66e0bd01..a3893a298 100644
--- a/runtime/js/40_tls.js
+++ b/runtime/js/40_tls.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const core = window.Deno.core;
diff --git a/runtime/js/40_write_file.js b/runtime/js/40_write_file.js
index 7a9cb1f40..79b8e6806 100644
--- a/runtime/js/40_write_file.js
+++ b/runtime/js/40_write_file.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const { stat, statSync, chmod, chmodSync } = window.__bootstrap.fs;
const { open, openSync } = window.__bootstrap.files;
diff --git a/runtime/js/41_prompt.js b/runtime/js/41_prompt.js
index ec294668b..cafd0f31e 100644
--- a/runtime/js/41_prompt.js
+++ b/runtime/js/41_prompt.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const { stdin } = window.__bootstrap.files;
const { isatty } = window.__bootstrap.tty;
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js
index c71f175e4..7cc7b543b 100644
--- a/runtime/js/90_deno_ns.js
+++ b/runtime/js/90_deno_ns.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
((window) => {
const __bootstrap = window.__bootstrap;
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js
index 21e1ed5eb..b41b75d33 100644
--- a/runtime/js/99_main.js
+++ b/runtime/js/99_main.js
@@ -1,4 +1,4 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
// Removes the `__proto__` for security reasons. This intentionally makes
// Deno non compliant with ECMA-262 Annex B.2.2.1
//