From 37a7b01d5cf555bbc57d74dc9e04000115ec4867 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Sat, 25 Jan 2020 14:31:42 +0100 Subject: Refactor error tracking and scope juggling in deno_core (#3783) --- core/any_error.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'core/any_error.rs') diff --git a/core/any_error.rs b/core/any_error.rs index 60c508e7d..34709e77f 100644 --- a/core/any_error.rs +++ b/core/any_error.rs @@ -1,4 +1,7 @@ -use std::any::{Any, TypeId}; +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. + +use std::any::Any; +use std::any::TypeId; use std::convert::From; use std::error::Error; use std::fmt; -- cgit v1.2.3