Skip to content

Commit

Permalink
chore: update copyright to 2021 (#9092)
Browse files Browse the repository at this point in the history
  • Loading branch information
magurotuna authored Jan 11, 2021
1 parent d676b6c commit d8fd71a
Show file tree
Hide file tree
Showing 269 changed files with 269 additions and 269 deletions.
2 changes: 1 addition & 1 deletion .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -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.
max_width = 80
tab_spaces = 2
edition = "2018"
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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.

[package]
name = "deno"
Expand Down
2 changes: 1 addition & 1 deletion cli/ast.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::media_type::MediaType;
use crate::tsc_config;
Expand Down
2 changes: 1 addition & 1 deletion cli/bench/deno_http_proxy.ts
Original file line number Diff line number Diff line change
@@ -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.
import { serve, ServerRequest } from "../std/http/server.ts";

const addr = Deno.args[0] || "127.0.0.1:4500";
Expand Down
2 changes: 1 addition & 1 deletion cli/bench/deno_tcp.ts
Original file line number Diff line number Diff line change
@@ -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.
// Used for benchmarking Deno's networking.
// TODO Replace this with a real HTTP server once
// https://github.com/denoland/deno/issues/726 is completed.
Expand Down
2 changes: 1 addition & 1 deletion cli/bench/deno_tcp_proxy.ts
Original file line number Diff line number Diff line change
@@ -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.
// Used for benchmarking Deno's tcp proxy performance.
const addr = Deno.args[0] || "127.0.0.1:4500";
const originAddr = Deno.args[1] || "127.0.0.1:4501";
Expand Down
2 changes: 1 addition & 1 deletion cli/bench/http.rs
Original file line number Diff line number Diff line change
@@ -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.

use super::Result;
use std::{
Expand Down
2 changes: 1 addition & 1 deletion cli/bench/main.rs
Original file line number Diff line number Diff line change
@@ -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.

use deno_core::serde_json::{self, map::Map, Number, Value};
use std::{
Expand Down
2 changes: 1 addition & 1 deletion cli/bench/node_http.js
Original file line number Diff line number Diff line change
@@ -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.
const http = require("http");
const port = process.argv[2] || "4544";
console.log("port", port);
Expand Down
2 changes: 1 addition & 1 deletion cli/bench/node_http_proxy.js
Original file line number Diff line number Diff line change
@@ -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.
const http = require("http");
const port = process.argv[2] || "4544";
const originPort = process.argv[3] || "4545";
Expand Down
2 changes: 1 addition & 1 deletion cli/bench/node_tcp.js
Original file line number Diff line number Diff line change
@@ -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.
// Note: this is a keep-alive server.
const { Server } = require("net");
const port = process.argv[2] || "4544";
Expand Down
2 changes: 1 addition & 1 deletion cli/bench/node_tcp_promise.js
Original file line number Diff line number Diff line change
@@ -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.
// Note: this is a keep-alive server.
const { Server } = require("net");
const port = process.argv[2] || "4544";
Expand Down
2 changes: 1 addition & 1 deletion cli/bench/node_tcp_proxy.js
Original file line number Diff line number Diff line change
@@ -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.
const net = require("net");

process.on("uncaughtException", function (error) {
Expand Down
2 changes: 1 addition & 1 deletion cli/bench/throughput.rs
Original file line number Diff line number Diff line change
@@ -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.

use super::Result;
use deno_core::serde_json::{Number, Value};
Expand Down
2 changes: 1 addition & 1 deletion cli/build.rs
Original file line number Diff line number Diff line change
@@ -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.

use deno_core::error::custom_error;
use deno_core::json_op_sync;
Expand Down
2 changes: 1 addition & 1 deletion cli/checksum.rs
Original file line number Diff line number Diff line change
@@ -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.

use ring::digest::Context;
use ring::digest::SHA256;
Expand Down
2 changes: 1 addition & 1 deletion cli/colors.rs
Original file line number Diff line number Diff line change
@@ -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.

// allow(dead_code) because denort does not use this.
#![allow(dead_code)]
Expand Down
2 changes: 1 addition & 1 deletion cli/deno_dir.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::disk_cache::DiskCache;
use std::path::PathBuf;
Expand Down
2 changes: 1 addition & 1 deletion cli/diagnostics.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::colors;

Expand Down
2 changes: 1 addition & 1 deletion cli/diff.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::colors;
use dissimilar::{diff as difference, Chunk};
Expand Down
2 changes: 1 addition & 1 deletion cli/disk_cache.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::fs_util;
use crate::http_cache::url_to_filename;
Expand Down
2 changes: 1 addition & 1 deletion cli/dts/lib.deno.ns.d.ts
Original file line number Diff line number Diff line change
@@ -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.

/// <reference no-default-lib="true" />
/// <reference lib="esnext" />
Expand Down
2 changes: 1 addition & 1 deletion cli/dts/lib.deno.shared_globals.d.ts
Original file line number Diff line number Diff line change
@@ -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.

// Documentation partially adapted from [MDN](https://developer.mozilla.org/),
// by Mozilla Contributors, which is licensed under CC-BY-SA 2.5.
Expand Down
2 changes: 1 addition & 1 deletion cli/dts/lib.deno.unstable.d.ts
Original file line number Diff line number Diff line change
@@ -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.

/// <reference no-default-lib="true" />
/// <reference lib="deno.ns" />
Expand Down
2 changes: 1 addition & 1 deletion cli/dts/lib.deno.window.d.ts
Original file line number Diff line number Diff line change
@@ -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.

/// <reference no-default-lib="true" />
/// <reference lib="deno.ns" />
Expand Down
2 changes: 1 addition & 1 deletion cli/dts/lib.deno.worker.d.ts
Original file line number Diff line number Diff line change
@@ -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.

/// <reference no-default-lib="true" />
/// <reference lib="deno.ns" />
Expand Down
2 changes: 1 addition & 1 deletion cli/errors.rs
Original file line number Diff line number Diff line change
@@ -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.

//! There are many types of errors in Deno:
//! - AnyError: a generic wrapper that can encapsulate any type of error.
Expand Down
2 changes: 1 addition & 1 deletion cli/file_fetcher.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::colors;
use crate::http_cache::HttpCache;
Expand Down
2 changes: 1 addition & 1 deletion cli/file_watcher.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::colors;
use core::task::{Context, Poll};
Expand Down
2 changes: 1 addition & 1 deletion cli/flags.rs
Original file line number Diff line number Diff line change
@@ -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.

use clap::App;
use clap::AppSettings;
Expand Down
2 changes: 1 addition & 1 deletion cli/flags_allow_net.rs
Original file line number Diff line number Diff line change
@@ -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.

use deno_core::url::Url;
use std::net::IpAddr;
Expand Down
2 changes: 1 addition & 1 deletion cli/fmt_errors.rs
Original file line number Diff line number Diff line change
@@ -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 mod provides DenoError to unify errors across Deno.
use crate::colors;
use deno_core::error::{AnyError, JsError, JsStackFrame};
Expand Down
2 changes: 1 addition & 1 deletion cli/fs_util.rs
Original file line number Diff line number Diff line change
@@ -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.

use deno_core::error::AnyError;
pub use deno_core::normalize_path;
Expand Down
2 changes: 1 addition & 1 deletion cli/http_cache.rs
Original file line number Diff line number Diff line change
@@ -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 module is meant to eventually implement HTTP cache
/// as defined in RFC 7234 (https://tools.ietf.org/html/rfc7234).
Expand Down
2 changes: 1 addition & 1 deletion cli/http_util.rs
Original file line number Diff line number Diff line change
@@ -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.

use deno_core::error::generic_error;
use deno_core::error::AnyError;
Expand Down
2 changes: 1 addition & 1 deletion cli/import_map.rs
Original file line number Diff line number Diff line change
@@ -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.

use deno_core::error::AnyError;
use deno_core::serde_json;
Expand Down
2 changes: 1 addition & 1 deletion cli/info.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::colors;
use crate::media_type::serialize_media_type;
Expand Down
2 changes: 1 addition & 1 deletion cli/lockfile.rs
Original file line number Diff line number Diff line change
@@ -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.

use deno_core::serde_json;
use deno_core::serde_json::json;
Expand Down
2 changes: 1 addition & 1 deletion cli/lsp/analysis.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::ast;
use crate::import_map::ImportMap;
Expand Down
2 changes: 1 addition & 1 deletion cli/lsp/capabilities.rs
Original file line number Diff line number Diff line change
@@ -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.

///!
///! Provides information about what capabilities that are supported by the
Expand Down
2 changes: 1 addition & 1 deletion cli/lsp/config.rs
Original file line number Diff line number Diff line change
@@ -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.

use deno_core::serde::Deserialize;
use deno_core::serde_json;
Expand Down
2 changes: 1 addition & 1 deletion cli/lsp/diagnostics.rs
Original file line number Diff line number Diff line change
@@ -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.

use super::analysis::get_lint_references;
use super::analysis::references_to_diagnostics;
Expand Down
2 changes: 1 addition & 1 deletion cli/lsp/language_server.rs
Original file line number Diff line number Diff line change
@@ -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.

use deno_core::error::anyhow;
use deno_core::error::AnyError;
Expand Down
2 changes: 1 addition & 1 deletion cli/lsp/memory_cache.rs
Original file line number Diff line number Diff line change
@@ -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.

use deno_core::error::AnyError;
use deno_core::ModuleSpecifier;
Expand Down
2 changes: 1 addition & 1 deletion cli/lsp/mod.rs
Original file line number Diff line number Diff line change
@@ -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.
use deno_core::error::AnyError;
use lspower::LspService;
use lspower::Server;
Expand Down
2 changes: 1 addition & 1 deletion cli/lsp/sources.rs
Original file line number Diff line number Diff line change
@@ -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.

use super::analysis;
use super::text;
Expand Down
2 changes: 1 addition & 1 deletion cli/lsp/text.rs
Original file line number Diff line number Diff line change
@@ -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.

use deno_core::serde_json::json;
use deno_core::serde_json::Value;
Expand Down
2 changes: 1 addition & 1 deletion cli/lsp/tsc.rs
Original file line number Diff line number Diff line change
@@ -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.

use super::analysis::ResolvedDependency;
use super::language_server::StateSnapshot;
Expand Down
2 changes: 1 addition & 1 deletion cli/lsp/utils.rs
Original file line number Diff line number Diff line change
@@ -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.

use deno_core::error::AnyError;
use deno_core::url::Position;
Expand Down
2 changes: 1 addition & 1 deletion cli/main.rs
Original file line number Diff line number Diff line change
@@ -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.

#![deny(warnings)]

Expand Down
2 changes: 1 addition & 1 deletion cli/main_runtime.rs
Original file line number Diff line number Diff line change
@@ -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.

#![deny(warnings)]

Expand Down
2 changes: 1 addition & 1 deletion cli/media_type.rs
Original file line number Diff line number Diff line change
@@ -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.

use deno_core::ModuleSpecifier;
use serde::Serialize;
Expand Down
2 changes: 1 addition & 1 deletion cli/module_graph.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::ast;
use crate::ast::parse;
Expand Down
2 changes: 1 addition & 1 deletion cli/module_loader.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::import_map::ImportMap;
use crate::module_graph::TypeLib;
Expand Down
2 changes: 1 addition & 1 deletion cli/ops/errors.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::diagnostics::Diagnostics;
use crate::program_state::ProgramState;
Expand Down
2 changes: 1 addition & 1 deletion cli/ops/mod.rs
Original file line number Diff line number Diff line change
@@ -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.

pub mod errors;
pub mod runtime_compiler;
Expand Down
2 changes: 1 addition & 1 deletion cli/ops/runtime_compiler.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::import_map::ImportMap;
use crate::module_graph::BundleType;
Expand Down
2 changes: 1 addition & 1 deletion cli/program_state.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::deno_dir;
use crate::file_fetcher::CacheSetting;
Expand Down
2 changes: 1 addition & 1 deletion cli/source_maps.rs
Original file line number Diff line number Diff line change
@@ -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 mod provides functions to remap a `JsError` based on a source map.

Expand Down
2 changes: 1 addition & 1 deletion cli/specifier_handler.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::ast::Location;
use crate::deno_dir::DenoDir;
Expand Down
2 changes: 1 addition & 1 deletion cli/standalone.rs
Original file line number Diff line number Diff line change
@@ -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.

use crate::colors;
use crate::version;
Expand Down
2 changes: 1 addition & 1 deletion cli/tests/045_proxy_client.ts
Original file line number Diff line number Diff line change
@@ -1,3 1,3 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
const res = await fetch("http://localhost:4545/std/examples/colors.ts");
console.log(`Response http: ${await res.text()}`);
2 changes: 1 addition & 1 deletion cli/tests/045_proxy_test.ts
Original file line number Diff line number Diff line change
@@ -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.
import { serve, ServerRequest } from "../../std/http/server.ts";
import { assertEquals } from "../../std/testing/asserts.ts";

Expand Down
2 changes: 1 addition & 1 deletion cli/tests/compiler_api_test.ts
Original file line number Diff line number Diff line change
@@ -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.
import {
assert,
assertEquals,
Expand Down
2 changes: 1 addition & 1 deletion cli/tests/hash.ts
Original file line number Diff line number Diff line change
@@ -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.

const { args } = Deno;
import { createHash, SupportedAlgorithm } from "../../std/hash/mod.ts";
Expand Down
2 changes: 1 addition & 1 deletion cli/tests/integration_tests.rs
Original file line number Diff line number Diff line change
@@ -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.
use deno_core::futures;
use deno_core::futures::prelude::*;
use deno_core::serde_json;
Expand Down
Loading

0 comments on commit d8fd71a

Please sign in to comment.