Skip to content

Commit d8fd71a

Browse files
authored
chore: update copyright to 2021 (denoland#9092)
1 parent d676b6c commit d8fd71a

File tree

269 files changed

+269
-269
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

269 files changed

+269
-269
lines changed

.rustfmt.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
max_width = 80
33
tab_spaces = 2
44
edition = "2018"

cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
# Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
[package]
44
name = "deno"

cli/ast.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::media_type::MediaType;
44
use crate::tsc_config;

cli/bench/deno_http_proxy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
import { serve, ServerRequest } from "../std/http/server.ts";
33

44
const addr = Deno.args[0] || "127.0.0.1:4500";

cli/bench/deno_tcp.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
// Used for benchmarking Deno's networking.
33
// TODO Replace this with a real HTTP server once
44
// https://github.com/denoland/deno/issues/726 is completed.

cli/bench/deno_tcp_proxy.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
// Used for benchmarking Deno's tcp proxy performance.
33
const addr = Deno.args[0] || "127.0.0.1:4500";
44
const originAddr = Deno.args[1] || "127.0.0.1:4501";

cli/bench/http.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use super::Result;
44
use std::{

cli/bench/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use deno_core::serde_json::{self, map::Map, Number, Value};
44
use std::{

cli/bench/node_http.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
const http = require("http");
33
const port = process.argv[2] || "4544";
44
console.log("port", port);

cli/bench/node_http_proxy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
const http = require("http");
33
const port = process.argv[2] || "4544";
44
const originPort = process.argv[3] || "4545";

cli/bench/node_tcp.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
// Note: this is a keep-alive server.
33
const { Server } = require("net");
44
const port = process.argv[2] || "4544";

cli/bench/node_tcp_promise.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
// Note: this is a keep-alive server.
33
const { Server } = require("net");
44
const port = process.argv[2] || "4544";

cli/bench/node_tcp_proxy.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
const net = require("net");
33

44
process.on("uncaughtException", function (error) {

cli/bench/throughput.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use super::Result;
44
use deno_core::serde_json::{Number, Value};

cli/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use deno_core::error::custom_error;
44
use deno_core::json_op_sync;

cli/checksum.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use ring::digest::Context;
44
use ring::digest::SHA256;

cli/colors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
// allow(dead_code) because denort does not use this.
44
#![allow(dead_code)]

cli/deno_dir.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::disk_cache::DiskCache;
44
use std::path::PathBuf;

cli/diagnostics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::colors;
44

cli/diff.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::colors;
44
use dissimilar::{diff as difference, Chunk};

cli/disk_cache.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::fs_util;
44
use crate::http_cache::url_to_filename;

cli/dts/lib.deno.ns.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
/// <reference no-default-lib="true" />
44
/// <reference lib="esnext" />

cli/dts/lib.deno.shared_globals.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
// Documentation partially adapted from [MDN](https://developer.mozilla.org/),
44
// by Mozilla Contributors, which is licensed under CC-BY-SA 2.5.

cli/dts/lib.deno.unstable.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
/// <reference no-default-lib="true" />
44
/// <reference lib="deno.ns" />

cli/dts/lib.deno.window.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
/// <reference no-default-lib="true" />
44
/// <reference lib="deno.ns" />

cli/dts/lib.deno.worker.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
/// <reference no-default-lib="true" />
44
/// <reference lib="deno.ns" />

cli/errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
//! There are many types of errors in Deno:
44
//! - AnyError: a generic wrapper that can encapsulate any type of error.

cli/file_fetcher.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::colors;
44
use crate::http_cache::HttpCache;

cli/file_watcher.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::colors;
44
use core::task::{Context, Poll};

cli/flags.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use clap::App;
44
use clap::AppSettings;

cli/flags_allow_net.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use deno_core::url::Url;
44
use std::net::IpAddr;

cli/fmt_errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
//! This mod provides DenoError to unify errors across Deno.
33
use crate::colors;
44
use deno_core::error::{AnyError, JsError, JsStackFrame};

cli/fs_util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use deno_core::error::AnyError;
44
pub use deno_core::normalize_path;

cli/http_cache.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
/// This module is meant to eventually implement HTTP cache
44
/// as defined in RFC 7234 (https://tools.ietf.org/html/rfc7234).

cli/http_util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use deno_core::error::generic_error;
44
use deno_core::error::AnyError;

cli/import_map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use deno_core::error::AnyError;
44
use deno_core::serde_json;

cli/info.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::colors;
44
use crate::media_type::serialize_media_type;

cli/lockfile.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use deno_core::serde_json;
44
use deno_core::serde_json::json;

cli/lsp/analysis.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::ast;
44
use crate::import_map::ImportMap;

cli/lsp/capabilities.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
///!
44
///! Provides information about what capabilities that are supported by the

cli/lsp/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use deno_core::serde::Deserialize;
44
use deno_core::serde_json;

cli/lsp/diagnostics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use super::analysis::get_lint_references;
44
use super::analysis::references_to_diagnostics;

cli/lsp/language_server.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use deno_core::error::anyhow;
44
use deno_core::error::AnyError;

cli/lsp/memory_cache.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use deno_core::error::AnyError;
44
use deno_core::ModuleSpecifier;

cli/lsp/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
use deno_core::error::AnyError;
33
use lspower::LspService;
44
use lspower::Server;

cli/lsp/sources.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use super::analysis;
44
use super::text;

cli/lsp/text.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use deno_core::serde_json::json;
44
use deno_core::serde_json::Value;

cli/lsp/tsc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use super::analysis::ResolvedDependency;
44
use super::language_server::StateSnapshot;

cli/lsp/utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use deno_core::error::AnyError;
44
use deno_core::url::Position;

cli/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
#![deny(warnings)]
44

cli/main_runtime.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
#![deny(warnings)]
44

cli/media_type.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use deno_core::ModuleSpecifier;
44
use serde::Serialize;

cli/module_graph.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::ast;
44
use crate::ast::parse;

cli/module_loader.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::import_map::ImportMap;
44
use crate::module_graph::TypeLib;

cli/ops/errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::diagnostics::Diagnostics;
44
use crate::program_state::ProgramState;

cli/ops/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
pub mod errors;
44
pub mod runtime_compiler;

cli/ops/runtime_compiler.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::import_map::ImportMap;
44
use crate::module_graph::BundleType;

cli/program_state.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::deno_dir;
44
use crate::file_fetcher::CacheSetting;

cli/source_maps.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
//! This mod provides functions to remap a `JsError` based on a source map.
44

cli/specifier_handler.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::ast::Location;
44
use crate::deno_dir::DenoDir;

cli/standalone.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
use crate::colors;
44
use crate::version;

cli/tests/045_proxy_client.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
const res = await fetch("http://localhost:4545/std/examples/colors.ts");
33
console.log(`Response http: ${await res.text()}`);

cli/tests/045_proxy_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
import { serve, ServerRequest } from "../../std/http/server.ts";
33
import { assertEquals } from "../../std/testing/asserts.ts";
44

cli/tests/compiler_api_test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
import {
33
assert,
44
assertEquals,

cli/tests/hash.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22

33
const { args } = Deno;
44
import { createHash, SupportedAlgorithm } from "../../std/hash/mod.ts";

cli/tests/integration_tests.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
1+
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
22
use deno_core::futures;
33
use deno_core::futures::prelude::*;
44
use deno_core::serde_json;

0 commit comments

Comments
 (0)